diff --git a/CHANGELOG.md b/CHANGELOG.md index 0d618885..1f4f6bdb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,30 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## [0.3.0](https://github.com/Stedi/jsonata-rs/compare/v0.2.0...v0.3.0) - 2024-11-15 + +### Added + +- Handle regex pattern for Value type ([#118](https://github.com/Stedi/jsonata-rs/pull/118)) + +### Fixed + +- some type-errors in function calls caused panics ([#141](https://github.com/Stedi/jsonata-rs/pull/141)) + +### Other + +- bump up actions workflow in osv scanner ([#138](https://github.com/Stedi/jsonata-rs/pull/138)) +- pin dependency fix for rust toolchain ([#137](https://github.com/Stedi/jsonata-rs/pull/137)) +- *(deps)* pin dependencies ([#136](https://github.com/Stedi/jsonata-rs/pull/136)) +- use Renovate best practices ([#135](https://github.com/Stedi/jsonata-rs/pull/135)) +- *(deps)* update taiki-e/install-action digest to 9c04113 ([#128](https://github.com/Stedi/jsonata-rs/pull/128)) +- add permissions definitions at workflow and jobs level ([#129](https://github.com/Stedi/jsonata-rs/pull/129)) +- Revert "chore: exempt CHANGELOG from codeowners ([#121](https://github.com/Stedi/jsonata-rs/pull/121))" ([#124](https://github.com/Stedi/jsonata-rs/pull/124)) +- Update scorecard.yml ([#123](https://github.com/Stedi/jsonata-rs/pull/123)) +- run tests within merge queue ([#122](https://github.com/Stedi/jsonata-rs/pull/122)) +- exempt CHANGELOG from codeowners ([#121](https://github.com/Stedi/jsonata-rs/pull/121)) +- *(deps)* update github actions upgrade ([#119](https://github.com/Stedi/jsonata-rs/pull/119)) + ## [0.2.0](https://github.com/Stedi/jsonata-rs/compare/v0.1.10...v0.2.0) - 2024-11-01 ### Added diff --git a/Cargo.toml b/Cargo.toml index 711c982c..6bd41e34 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jsonata-rs" -version = "0.2.0" +version = "0.3.0" edition = "2021" license = "Apache-2.0" authors = ["Stedi"]