diff --git a/crates/napi/CHANGELOG.md b/crates/napi/CHANGELOG.md index d3707c8a..a74017ec 100644 --- a/crates/napi/CHANGELOG.md +++ b/crates/napi/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [3.6.1](https://github.com/napi-rs/napi-rs/compare/napi-v3.6.0...napi-v3.6.1) - 2025-12-02 + +### Other + +- updated the following local packages: napi-sys + ## [3.6.0](https://github.com/napi-rs/napi-rs/compare/napi-v3.5.2...napi-v3.6.0) - 2025-12-02 ### Added diff --git a/crates/napi/Cargo.toml b/crates/napi/Cargo.toml index 2ad6c0d2..7dd3a54e 100644 --- a/crates/napi/Cargo.toml +++ b/crates/napi/Cargo.toml @@ -8,7 +8,7 @@ name = "napi" readme = "README.md" repository = "https://github.com/napi-rs/napi-rs" rust-version.workspace = true -version = "3.6.0" +version = "3.6.1" [lib] doctest = false @@ -82,7 +82,7 @@ version = "1" [dependencies.napi-sys] path = "../sys" -version = "3.2.0" +version = "3.2.1" default-features = false [dependencies.encoding_rs] diff --git a/crates/sys/CHANGELOG.md b/crates/sys/CHANGELOG.md index eac7fded..f8390763 100644 --- a/crates/sys/CHANGELOG.md +++ b/crates/sys/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [3.2.1](https://github.com/napi-rs/napi-rs/compare/napi-sys-v3.2.0...napi-sys-v3.2.1) - 2025-12-02 + +### Fixed + +- *(sys)* always require libloading because of msvc ([#3047](https://github.com/napi-rs/napi-rs/pull/3047)) + ## [3.2.0](https://github.com/napi-rs/napi-rs/compare/napi-sys-v3.1.1...napi-sys-v3.2.0) - 2025-12-02 ### Added diff --git a/crates/sys/Cargo.toml b/crates/sys/Cargo.toml index 074a78fe..aa8adbeb 100644 --- a/crates/sys/Cargo.toml +++ b/crates/sys/Cargo.toml @@ -9,7 +9,7 @@ name = "napi-sys" readme = "README.md" repository = "https://github.com/napi-rs/napi-rs" rust-version.workspace = true -version = "3.2.0" +version = "3.2.1" [features] default = ["dyn-symbols"]