diff --git a/docs/release_notes.md b/docs/release_notes.md index f9b3ff3..6f106e9 100644 --- a/docs/release_notes.md +++ b/docs/release_notes.md @@ -1,5 +1,10 @@ # Release Notes +## 1.0.1 + +* Upgraded deno_ast to v0.42.2 +* Upgraded rust toolchain to v1.81.0 + ## 1.0.0 * Upgraded deno_ast to v0.42.0 diff --git a/rust/Cargo.lock b/rust/Cargo.lock index 5036d9a..36f3624 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -91,9 +91,9 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.86" +version = "1.0.89" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da" +checksum = "86fdf8605db99b54d3cd748a44c6d04df638eb5dafb219b135d0149bd0db01f6" [[package]] name = "arrayvec" @@ -310,9 +310,9 @@ dependencies = [ [[package]] name = "deno_ast" -version = "0.42.0" +version = "0.42.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3b08d11d9e4086b00d3428650e31153cf5896586411763cb88a6423ce5b18791" +checksum = "b2b9d03b1bbeeecdac54367f075d572131736d06c5be3bc49037855bc5ab1bbb" dependencies = [ "base64 0.21.7", "deno_media_type", diff --git a/rust/Cargo.toml b/rust/Cargo.toml index aa4843a..1207a95 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -12,7 +12,7 @@ crate-type = ["cdylib", "rlib"] base64 = "0.22.1" log = "0.4.22" env_logger = "0.11.5" -deno_ast = { version = "0.42.0", features = [ +deno_ast = { version = "0.42.2", features = [ "bundler", "cjs", "codegen", @@ -32,4 +32,4 @@ deno_ast = { version = "0.42.0", features = [ ] } jni = "0.21.1" num-bigint = "0.4.6" -anyhow = "1.0.86" +anyhow = "1.0.89" diff --git a/rust/rust-toolchain.toml b/rust/rust-toolchain.toml index 42be26d..abd1fd7 100644 --- a/rust/rust-toolchain.toml +++ b/rust/rust-toolchain.toml @@ -1,4 +1,4 @@ [toolchain] -channel = "1.79.0" +channel = "1.81.0" components = ["clippy", "rustfmt"] profile = "minimal"