diff --git a/crates/backend/CHANGELOG.md b/crates/backend/CHANGELOG.md index e69de29b..8b77c68d 100644 --- a/crates/backend/CHANGELOG.md +++ b/crates/backend/CHANGELOG.md @@ -0,0 +1,14 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [2.0.1](https://github.com/napi-rs/napi-rs/compare/napi-derive-backend-v2.0.0...napi-derive-backend-v2.0.1) - 2025-07-21 + +### Other + +- pin release-plz action diff --git a/crates/backend/Cargo.toml b/crates/backend/Cargo.toml index 12c879cc..d82c6ce0 100644 --- a/crates/backend/Cargo.toml +++ b/crates/backend/Cargo.toml @@ -7,7 +7,7 @@ name = "napi-derive-backend" readme = "README.md" repository = "https://github.com/napi-rs/napi-rs" rust-version = "1.80" -version = "2.0.0" +version = "2.0.1" [package.metadata.workspaces] independent = true diff --git a/crates/macro/CHANGELOG.md b/crates/macro/CHANGELOG.md index e69de29b..b80060ba 100644 --- a/crates/macro/CHANGELOG.md +++ b/crates/macro/CHANGELOG.md @@ -0,0 +1,18 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [3.1.0](https://github.com/napi-rs/napi-rs/compare/napi-derive-v3.0.0...napi-derive-v3.1.0) - 2025-07-21 + +### Added + +- *(napi)* provide ScopedTask to resolve JsValue with lifetime ([#2786](https://github.com/napi-rs/napi-rs/pull/2786)) + +### Other + +- pin release-plz action diff --git a/crates/macro/Cargo.toml b/crates/macro/Cargo.toml index 416d15c3..4aaf4046 100644 --- a/crates/macro/Cargo.toml +++ b/crates/macro/Cargo.toml @@ -8,7 +8,7 @@ name = "napi-derive" readme = "README.md" repository = "https://github.com/napi-rs/napi-rs" rust-version = "1.80" -version = "3.0.0" +version = "3.1.0" [package.metadata.workspaces] independent = true @@ -24,7 +24,7 @@ type-def = ["napi-derive-backend/type-def", "ctor"] [dependencies] convert_case = "0.8" ctor = { version = "0.4", optional = true } -napi-derive-backend = { version = "2.0.0", path = "../backend" } +napi-derive-backend = { version = "2.0.1", path = "../backend" } proc-macro2 = "1" quote = "1" syn = { version = "2", features = ["fold", "full", "extra-traits"] } diff --git a/crates/napi/CHANGELOG.md b/crates/napi/CHANGELOG.md index e69de29b..37be5476 100644 --- a/crates/napi/CHANGELOG.md +++ b/crates/napi/CHANGELOG.md @@ -0,0 +1,19 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [3.1.0](https://github.com/napi-rs/napi-rs/compare/napi-v3.0.0...napi-v3.1.0) - 2025-07-21 + +### Added + +- *(napi)* provide ScopedTask to resolve JsValue with lifetime ([#2786](https://github.com/napi-rs/napi-rs/pull/2786)) + +### Other + +- *(napi)* add UnwindSafe and RefUnwindSafe back to AbortSignal and AsyncWorkPromise ([#2789](https://github.com/napi-rs/napi-rs/pull/2789)) +- pin release-plz action diff --git a/crates/napi/Cargo.toml b/crates/napi/Cargo.toml index f44483cb..06b49040 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 = "1.80" -version = "3.0.0" +version = "3.1.0" [lib] doctest = false diff --git a/examples/napi/Cargo.toml b/examples/napi/Cargo.toml index a8cc9dce..4d29ce52 100644 --- a/examples/napi/Cargo.toml +++ b/examples/napi/Cargo.toml @@ -13,8 +13,7 @@ snmalloc = ["snmalloc-rs"] dyn-symbols = ["napi/dyn-symbols"] error_try_builds = [] noop = ["napi/noop"] -cfg_attr_napi = [ -] # for testing cfg_attr(not(feature = "noop"), napi_derive::napi) attribute +cfg_attr_napi = [] # for testing cfg_attr(not(feature = "noop"), napi_derive::napi) attribute [dependencies] chrono = "0.4"