From 74272b441abc3d616944644d62416a1b4678cb2e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 5 Nov 2024 12:06:59 -0500 Subject: [PATCH] chore: release main (#152) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .release-please-manifest.json | 4 ++-- js/CHANGELOG.md | 8 ++++++++ js/package-lock.json | 4 ++-- js/package.json | 2 +- rust/CHANGELOG.md | 8 ++++++++ rust/Cargo.lock | 2 +- rust/Cargo.toml | 2 +- 7 files changed, 23 insertions(+), 7 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index f0e1998..45295f7 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,4 +1,4 @@ { - "js": "3.3.1", - "rust": "3.2.1" + "js": "3.3.2", + "rust": "3.2.2" } diff --git a/js/CHANGELOG.md b/js/CHANGELOG.md index 903aefc..e36a322 100644 --- a/js/CHANGELOG.md +++ b/js/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [3.3.2](https://github.com/humanwhocodes/momoa/compare/momoa-js-v3.3.1...momoa-js-v3.3.2) (2024-11-05) + + +### Bug Fixes + +* Correctly convert -0x1 to a number ([c77a96e](https://github.com/humanwhocodes/momoa/commit/c77a96eaa149bf1350615352252e4c1bfcf6d3d5)), closes [#151](https://github.com/humanwhocodes/momoa/issues/151) +* mark `allowTrailingCommas` as optional ([#150](https://github.com/humanwhocodes/momoa/issues/150)) ([5746823](https://github.com/humanwhocodes/momoa/commit/574682317c14e457bc0a1830003567bf96809c55)) + ## [3.3.1](https://github.com/humanwhocodes/momoa/compare/momoa-js-v3.3.0...momoa-js-v3.3.1) (2024-10-28) diff --git a/js/package-lock.json b/js/package-lock.json index 8ea45fe..4afadf7 100644 --- a/js/package-lock.json +++ b/js/package-lock.json @@ -1,12 +1,12 @@ { "name": "@humanwhocodes/momoa", - "version": "3.3.1", + "version": "3.3.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@humanwhocodes/momoa", - "version": "3.3.1", + "version": "3.3.2", "license": "Apache-2.0", "devDependencies": { "beautify-benchmark": "0.2.4", diff --git a/js/package.json b/js/package.json index 7119ea4..508a4f4 100644 --- a/js/package.json +++ b/js/package.json @@ -1,6 +1,6 @@ { "name": "@humanwhocodes/momoa", - "version": "3.3.1", + "version": "3.3.2", "description": "JSON AST parser, tokenizer, printer, traverser.", "author": "Nicholas C. Zakas", "type": "module", diff --git a/rust/CHANGELOG.md b/rust/CHANGELOG.md index eb792ad..35f5d07 100644 --- a/rust/CHANGELOG.md +++ b/rust/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [3.2.2](https://github.com/humanwhocodes/momoa/compare/momoa-rs-v3.2.1...momoa-rs-v3.2.2) (2024-11-05) + + +### Bug Fixes + +* **deps:** update rust crate serde to v1.0.214 ([#148](https://github.com/humanwhocodes/momoa/issues/148)) ([f07ff75](https://github.com/humanwhocodes/momoa/commit/f07ff75eb80ebd6ed08e155be9c6b42a6d1a8689)) +* **deps:** update rust crate thiserror to v1.0.68 ([#149](https://github.com/humanwhocodes/momoa/issues/149)) ([a1a4eec](https://github.com/humanwhocodes/momoa/commit/a1a4eecf4c2162c2cfefcbc1ff59ce61997b67b5)) + ## [3.2.1](https://github.com/humanwhocodes/momoa/compare/momoa-rs-v3.2.0...momoa-rs-v3.2.1) (2024-10-28) diff --git a/rust/Cargo.lock b/rust/Cargo.lock index f62d591..9192f9c 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -52,7 +52,7 @@ checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" [[package]] name = "momoa" -version = "3.2.1" +version = "3.2.2" dependencies = [ "glob", "serde", diff --git a/rust/Cargo.toml b/rust/Cargo.toml index d76feaf..395286c 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "momoa" -version = "3.2.1" +version = "3.2.2" description = "A JSON parsing library suitable for static analysis" authors = ["Nicholas C. Zakas"] license = "Apache-2.0"