From 39230082f6bc2a088d2c51b2a40243e9aee40010 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 6 Nov 2025 17:08:41 +0800 Subject: [PATCH] chore: release (#2977) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- crates/build/CHANGELOG.md | 6 ++++++ crates/build/Cargo.toml | 2 +- crates/napi/CHANGELOG.md | 16 ++++++++++++++++ crates/napi/Cargo.toml | 6 +++--- crates/sys/CHANGELOG.md | 6 ++++++ crates/sys/Cargo.toml | 2 +- 6 files changed, 33 insertions(+), 5 deletions(-) diff --git a/crates/build/CHANGELOG.md b/crates/build/CHANGELOG.md index 1d8580d0..522d3d7c 100644 --- a/crates/build/CHANGELOG.md +++ b/crates/build/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.3.0](https://github.com/napi-rs/napi-rs/compare/napi-build-v2.2.4...napi-build-v2.3.0) - 2025-11-06 + +### Added + +- *(sys)* use libloading to load napi symbols at runtime on all platform ([#2996](https://github.com/napi-rs/napi-rs/pull/2996)) + ## [2.2.4](https://github.com/napi-rs/napi-rs/compare/napi-build-v2.2.3...napi-build-v2.2.4) - 2025-10-24 ### Fixed diff --git a/crates/build/Cargo.toml b/crates/build/Cargo.toml index fa864b20..f7bb870b 100644 --- a/crates/build/Cargo.toml +++ b/crates/build/Cargo.toml @@ -9,7 +9,7 @@ name = "napi-build" readme = "README.md" repository = "https://github.com/napi-rs/napi-rs" rust-version.workspace = true -version = "2.2.4" +version = "2.3.0" [package.metadata.workspaces] independent = true diff --git a/crates/napi/CHANGELOG.md b/crates/napi/CHANGELOG.md index 7b04f66c..6ac0c87c 100644 --- a/crates/napi/CHANGELOG.md +++ b/crates/napi/CHANGELOG.md @@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [3.5.0](https://github.com/napi-rs/napi-rs/compare/napi-v3.4.0...napi-v3.5.0) - 2025-11-06 + +### Added + +- *(sys)* use libloading to load napi symbols at runtime on all platform ([#2996](https://github.com/napi-rs/napi-rs/pull/2996)) + +### Fixed + +- *(napi)* memory leak in PromiseRaw cleanup callback ([#2995](https://github.com/napi-rs/napi-rs/pull/2995)) + +### Other + +- *(napi)* mark tsfn data as pub and split SendableResolver to indent file ([#2992](https://github.com/napi-rs/napi-rs/pull/2992)) +- *(napi)* mark SendableResolver and PromiseRaw as pub ([#2981](https://github.com/napi-rs/napi-rs/pull/2981)) +- add sponsors + ## [3.4.0](https://github.com/napi-rs/napi-rs/compare/napi-v3.3.0...napi-v3.4.0) - 2025-10-24 ### Added diff --git a/crates/napi/Cargo.toml b/crates/napi/Cargo.toml index 11936729..96b49df9 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.4.0" +version = "3.5.0" [lib] doctest = false @@ -81,7 +81,7 @@ version = "1" [dependencies.napi-sys] path = "../sys" -version = "3.0.1" +version = "3.1.0" [dependencies.encoding_rs] optional = true @@ -122,4 +122,4 @@ optional = true version = "0.1" [build-dependencies] -napi-build = { path = "../build", version = "2.2.4" } +napi-build = { path = "../build", version = "2.3.0" } diff --git a/crates/sys/CHANGELOG.md b/crates/sys/CHANGELOG.md index 07420360..9c08c518 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.1.0](https://github.com/napi-rs/napi-rs/compare/napi-sys-v3.0.1...napi-sys-v3.1.0) - 2025-11-06 + +### Added + +- *(sys)* use libloading to load napi symbols at runtime on all platform ([#2996](https://github.com/napi-rs/napi-rs/pull/2996)) + ## [3.0.1](https://github.com/napi-rs/napi-rs/compare/napi-sys-v3.0.0...napi-sys-v3.0.1) - 2025-10-24 ### Other diff --git a/crates/sys/Cargo.toml b/crates/sys/Cargo.toml index 52a27a06..7537be2c 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.0.1" +version = "3.1.0" [features] dyn-symbols = [] # Deprecated feature