From be4b16ca00aa2cecd19be6ffe6de59495b471b14 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 2 Dec 2025 22:41:52 +0800 Subject: [PATCH] chore: release (#3048) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- crates/napi/CHANGELOG.md | 6 ++++++ crates/napi/Cargo.toml | 4 ++-- crates/sys/CHANGELOG.md | 6 ++++++ crates/sys/Cargo.toml | 2 +- 4 files changed, 15 insertions(+), 3 deletions(-) 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"]