Skip to content

Commit c70f18c

Browse files
chore(release): 2.2.1 [skip ci]
## [2.2.1](2.2.0...2.2.1) (2026-03-11) ### Bug Fixes * updating install script logic to use release artifacts ([#86](#86))
1 parent 50a0bd4 commit c70f18c

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [2.2.1](https://github.com/GingerGraham/bash-logger/compare/2.2.0...2.2.1) (2026-03-11)
9+
10+
### Bug Fixes
11+
12+
* updating install script logic to use release artifacts ([#86](https://github.com/GingerGraham/bash-logger/issues/86))
13+
814
## [2.2.0](https://github.com/GingerGraham/bash-logger/compare/2.1.3...2.2.0) (2026-02-25)
915

1016
### Features

bpkg.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bash-logger",
3-
"version": "2.2.0",
3+
"version": "2.2.1",
44
"description": "Production-grade logging for bash scripts with syslog compliance, journal integration, and customizable formatting",
55
"author": "Graham Watts (GingerGraham)",
66
"homepage": "https://github.com/GingerGraham/bash-logger",

logging.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
# Guard against re-initialization when sourced multiple times
5454
# Use readonly status instead of emptiness to avoid environment bypass
5555
if ! readonly -p 2>/dev/null | grep -q "declare -[^ ]*r[^ ]* BASH_LOGGER_VERSION="; then
56-
readonly BASH_LOGGER_VERSION="2.2.0"
56+
readonly BASH_LOGGER_VERSION="2.2.1"
5757

5858
# Unset potentially malicious environment variables before setting internal constants
5959
# Only unset if not already readonly (which would indicate re-sourcing)

0 commit comments

Comments
 (0)