diff --git a/CHANGELOG.md b/CHANGELOG.md index 280bb62..2f94a31 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,10 @@ and this project adheres to ## [Unreleased] +Nothing yet. + +## [0.3.0] — 2024-07-23 + ### BREAKING CHANGES > [!NOTE] @@ -47,6 +51,10 @@ and this project adheres to [kseistrup](https://aur.archlinux.org/account/kseistrup) - `--help` text uses `:json` instead of `:raw` in one of the examples (https://github.com/h4l/json.bash/pull/9) +- Updated `examples/jb-cli.sh` to use the current argument syntax — it was out + of date. +- `json.bash` now has a copyright/license/url comment in at the top. This should + make its origin clear when vendored into a downstream project as a dependency. ## [0.2.2] — 2023-08-07 @@ -96,6 +104,7 @@ No functional changes, `0.2.0` wasn't published because of a CI fail. Initial release. [unreleased]: https://github.com/h4l/json.bash/compare/v0.2.2...HEAD +[0.3.0]: https://github.com/h4l/json.bash/compare/v0.2.2...v0.3.0 [0.2.2]: https://github.com/h4l/json.bash/compare/v0.2.1...v0.2.2 [0.2.1]: https://github.com/h4l/json.bash/compare/v0.2.0...v0.2.1 [0.2.0]: https://github.com/h4l/json.bash/compare/v0.1.0...v0.2.0 diff --git a/docker-bake.hcl b/docker-bake.hcl index 0bee425..9bd1d69 100644 --- a/docker-bake.hcl +++ b/docker-bake.hcl @@ -7,7 +7,7 @@ NOW = "${timestamp()}" variable CI { default = "false" } -_DEFAULT_JSON_BASH_VERSION = "0.2.3-dev" +_DEFAULT_JSON_BASH_VERSION = "0.3.1-dev" variable JSON_BASH_VERSION { default = "" } diff --git a/json.bash b/json.bash index 72768e0..55aa232 100755 --- a/json.bash +++ b/json.bash @@ -4,7 +4,7 @@ # https://github.com/h4l/json.bash shopt -s extglob # required to match our auto glob patterns -JSON_BASH_VERSION=0.2.3-dev +JSON_BASH_VERSION=0.3.0 declare -g -A _json_defaults=()