diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 3acb075..75890b3 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,4 +1,4 @@ { - "js": "3.2.2", - "rust": "3.1.1" + "js": "3.3.0", + "rust": "3.2.0" } diff --git a/js/CHANGELOG.md b/js/CHANGELOG.md index a15a1f5..cae93dc 100644 --- a/js/CHANGELOG.md +++ b/js/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [3.3.0](https://github.com/humanwhocodes/momoa/compare/momoa-js-v3.2.2...momoa-js-v3.3.0) (2024-10-15) + + +### Features + +* Add option to allow trailing commas in JSON and JSONC ([#136](https://github.com/humanwhocodes/momoa/issues/136)) ([76e23f4](https://github.com/humanwhocodes/momoa/commit/76e23f4cc21f8cae346b06ea8408fda260f80f5a)), closes [#135](https://github.com/humanwhocodes/momoa/issues/135) + ## [3.2.2](https://github.com/humanwhocodes/momoa/compare/momoa-js-v3.2.1...momoa-js-v3.2.2) (2024-10-04) diff --git a/js/package-lock.json b/js/package-lock.json index 6148b1c..e57f878 100644 --- a/js/package-lock.json +++ b/js/package-lock.json @@ -1,12 +1,12 @@ { "name": "@humanwhocodes/momoa", - "version": "3.2.2", + "version": "3.3.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@humanwhocodes/momoa", - "version": "3.2.2", + "version": "3.3.0", "license": "Apache-2.0", "devDependencies": { "beautify-benchmark": "0.2.4", diff --git a/js/package.json b/js/package.json index 447ae45..0d190af 100644 --- a/js/package.json +++ b/js/package.json @@ -1,6 +1,6 @@ { "name": "@humanwhocodes/momoa", - "version": "3.2.2", + "version": "3.3.0", "description": "JSON AST parser, tokenizer, printer, traverser.", "author": "Nicholas C. Zakas", "type": "module", diff --git a/rust/CHANGELOG.md b/rust/CHANGELOG.md index 79e439e..667734a 100644 --- a/rust/CHANGELOG.md +++ b/rust/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [3.2.0](https://github.com/humanwhocodes/momoa/compare/momoa-rs-v3.1.1...momoa-rs-v3.2.0) (2024-10-15) + + +### Features + +* Add option to allow trailing commas in JSON and JSONC ([#136](https://github.com/humanwhocodes/momoa/issues/136)) ([76e23f4](https://github.com/humanwhocodes/momoa/commit/76e23f4cc21f8cae346b06ea8408fda260f80f5a)), closes [#135](https://github.com/humanwhocodes/momoa/issues/135) + + +### Bug Fixes + +* **deps:** update rust crate serde to v1.0.210 ([#128](https://github.com/humanwhocodes/momoa/issues/128)) ([899422e](https://github.com/humanwhocodes/momoa/commit/899422e6a49ccba97b37c76beb1e88949e91fc9f)) + ## [3.1.1](https://github.com/humanwhocodes/momoa/compare/momoa-rs-v3.1.0...momoa-rs-v3.1.1) (2024-09-02) diff --git a/rust/Cargo.lock b/rust/Cargo.lock index 71885d3..9adeff0 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -44,15 +44,9 @@ dependencies = [ "cfg-if", ] -[[package]] -name = "memchr" -version = "2.7.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" - [[package]] name = "momoa" -version = "3.1.1" +version = "3.2.0" dependencies = [ "glob", "serde", @@ -126,12 +120,11 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.128" +version = "1.0.117" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6ff5456707a1de34e7e37f2a6fd3d3f808c318259cbd01ab6377795054b483d8" +checksum = "455182ea6142b14f93f4bc5320a2b31c1f266b66a4a5c858b013302a5d8cbfc3" dependencies = [ "itoa", - "memchr", "ryu", "serde", ] diff --git a/rust/Cargo.toml b/rust/Cargo.toml index efe4382..53d469f 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "momoa" -version = "3.1.1" +version = "3.2.0" description = "A JSON parsing library suitable for static analysis" authors = ["Nicholas C. Zakas"] license = "Apache-2.0"