diff --git a/.release-please-manifest.json b/.release-please-manifest.json index f5b6ad3..a1f76e1 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,4 +1,4 @@ { - "js": "3.0.3", - "rust": "3.0.1" + "js": "3.0.4", + "rust": "3.0.2" } diff --git a/js/CHANGELOG.md b/js/CHANGELOG.md index e3fbfa9..cf9bcb7 100644 --- a/js/CHANGELOG.md +++ b/js/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [3.0.4](https://github.com/humanwhocodes/momoa/compare/momoa-js-v3.0.3...momoa-js-v3.0.4) (2024-06-21) + + +### Bug Fixes + +* **types:** Node#loc is not optional ([1982367](https://github.com/humanwhocodes/momoa/commit/1982367cf12df54857a21e52cd5e27fb755aee58)) + ## [3.0.3](https://github.com/humanwhocodes/momoa/compare/momoa-js-v3.0.2...momoa-js-v3.0.3) (2024-06-19) diff --git a/js/package-lock.json b/js/package-lock.json index 75d8643..64c14e8 100644 --- a/js/package-lock.json +++ b/js/package-lock.json @@ -1,12 +1,12 @@ { "name": "@humanwhocodes/momoa", - "version": "3.0.3", + "version": "3.0.4", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@humanwhocodes/momoa", - "version": "3.0.3", + "version": "3.0.4", "license": "Apache-2.0", "devDependencies": { "beautify-benchmark": "0.2.4", diff --git a/js/package.json b/js/package.json index c747d76..83b6d0c 100644 --- a/js/package.json +++ b/js/package.json @@ -1,6 +1,6 @@ { "name": "@humanwhocodes/momoa", - "version": "3.0.3", + "version": "3.0.4", "description": "JSON AST parser, tokenizer, printer, traverser.", "author": "Nicholas C. Zakas", "type": "module", diff --git a/rust/CHANGELOG.md b/rust/CHANGELOG.md index 2894229..4452f54 100644 --- a/rust/CHANGELOG.md +++ b/rust/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [3.0.2](https://github.com/humanwhocodes/momoa/compare/momoa-rs-v3.0.1...momoa-rs-v3.0.2) (2024-06-21) + + +### Bug Fixes + +* **deps:** update rust crate serde-wasm-bindgen to 0.6 ([#83](https://github.com/humanwhocodes/momoa/issues/83)) ([a23e95b](https://github.com/humanwhocodes/momoa/commit/a23e95b0bb0a9e1be54faaeedd4e8f8165db3bdd)) +* **deps:** update rust crate thiserror to v1.0.61 ([#92](https://github.com/humanwhocodes/momoa/issues/92)) ([d8cc9b5](https://github.com/humanwhocodes/momoa/commit/d8cc9b58419eb01b2ded13a635ba162b9d62b661)) +* **deps:** update rust crate wasm-bindgen to v0.2.92 ([#93](https://github.com/humanwhocodes/momoa/issues/93)) ([9a78279](https://github.com/humanwhocodes/momoa/commit/9a78279ebeebd4c2dec0d50ea5c3650357a98455)) + ## [3.0.1](https://github.com/humanwhocodes/momoa/compare/momoa-rs-v3.0.0...momoa-rs-v3.0.1) (2024-02-12) diff --git a/rust/Cargo.lock b/rust/Cargo.lock index 930bc2c..fe790fd 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -46,7 +46,7 @@ dependencies = [ [[package]] name = "momoa" -version = "3.0.1" +version = "3.0.2" dependencies = [ "glob", "serde", @@ -212,18 +212,18 @@ dependencies = [ [[package]] name = "thiserror" -version = "1.0.61" +version = "1.0.57" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c546c80d6be4bc6a00c0f01730c08df82eaa7a7a61f11d656526506112cc1709" +checksum = "1e45bcbe8ed29775f228095caf2cd67af7a4ccf756ebff23a306bf3e8b47b24b" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.61" +version = "1.0.57" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "46c3384250002a6d5af4d114f2845d37b57521033f30d5c3f46c4d70e1197533" +checksum = "a953cb265bef375dae3de6663da4d3804eee9682ea80d8e2542529b73c531c81" dependencies = [ "proc-macro2", "quote", diff --git a/rust/Cargo.toml b/rust/Cargo.toml index 2680ef3..60ae536 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "momoa" -version = "3.0.1" +version = "3.0.2" description = "A JSON parsing library suitable for static analysis" authors = ["Nicholas C. Zakas"] license = "Apache-2.0"