diff --git a/Cargo.lock b/Cargo.lock index 766a9ef..916ec4f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1795,7 +1795,7 @@ dependencies = [ [[package]] name = "near-kit" -version = "0.14.0" +version = "0.15.0" dependencies = [ "base64 0.23.1", "bip39", @@ -1837,7 +1837,7 @@ dependencies = [ [[package]] name = "near-kit-macros" -version = "0.12.0" +version = "0.12.1" dependencies = [ "near-kit", "proc-macro2", diff --git a/Cargo.toml b/Cargo.toml index 697d39e..4d2aa04 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -79,8 +79,8 @@ tempfile = "3" tracing-subscriber = { version = "0.3", features = ["env-filter"] } # Internal crates -near-kit = { path = "crates/near-kit", version = "0.14.0" } -near-kit-macros = { path = "crates/near-kit-macros", version = "0.12.0" } +near-kit = { path = "crates/near-kit", version = "0.15.0" } +near-kit-macros = { path = "crates/near-kit-macros", version = "0.12.1" } [profile.release] lto = true diff --git a/crates/near-kit-macros/CHANGELOG.md b/crates/near-kit-macros/CHANGELOG.md index d483e74..6e05227 100644 --- a/crates/near-kit-macros/CHANGELOG.md +++ b/crates/near-kit-macros/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.12.1](https://github.com/r-near/near-kit-rs/compare/near-kit-macros-v0.12.0...near-kit-macros-v0.12.1) - 2026-08-11 + +### Other + +- *(deps)* bump syn from 2.0.119 to 3.0.3 ([#265](https://github.com/r-near/near-kit-rs/pull/265)) + ## [0.12.0](https://github.com/r-near/near-kit-rs/compare/near-kit-macros-v0.12.0-rc.1...near-kit-macros-v0.12.0) - 2026-07-13 First stable release of the 0.12 line. No changes since `0.12.0-rc.1`. diff --git a/crates/near-kit-macros/Cargo.toml b/crates/near-kit-macros/Cargo.toml index a42531d..8a0b4bd 100644 --- a/crates/near-kit-macros/Cargo.toml +++ b/crates/near-kit-macros/Cargo.toml @@ -3,7 +3,7 @@ name = "near-kit-macros" description = "Proc macros for near-kit typed contract interfaces" keywords = ["near", "blockchain", "macro", "proc-macro"] categories = ["development-tools::procedural-macro-helpers"] -version = "0.12.0" +version = "0.12.1" edition.workspace = true license.workspace = true repository.workspace = true diff --git a/crates/near-kit/CHANGELOG.md b/crates/near-kit/CHANGELOG.md index 53a41ae..ed42682 100644 --- a/crates/near-kit/CHANGELOG.md +++ b/crates/near-kit/CHANGELOG.md @@ -7,6 +7,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.15.0](https://github.com/r-near/near-kit-rs/compare/near-kit-v0.14.0...near-kit-v0.15.0) - 2026-08-11 + +### Added + +- derive Copy for BlockReference ([#274](https://github.com/r-near/near-kit-rs/pull/274)) +- derive ML-DSA-65 keys from BIP-39 seed phrases ([#261](https://github.com/r-near/near-kit-rs/pull/261)) + +### Fixed + +- [**breaking**] distinguish view function RPC errors ([#272](https://github.com/r-near/near-kit-rs/pull/272)) + +### Other + +- *(deps)* unify rand_core on 0.10 by bumping k256 and rand ([#268](https://github.com/r-near/near-kit-rs/pull/268)) +- *(deps)* bump ed25519-dalek from 2.2.0 to 3.0.0 ([#241](https://github.com/r-near/near-kit-rs/pull/241)) +- *(deps)* bump gloo-timers from 0.3.0 to 0.4.0 ([#264](https://github.com/r-near/near-kit-rs/pull/264)) + ### Changed - [**breaking**] preserve block height and hash metadata on applicable view RPC diff --git a/crates/near-kit/Cargo.toml b/crates/near-kit/Cargo.toml index 69dc62f..e320d69 100644 --- a/crates/near-kit/Cargo.toml +++ b/crates/near-kit/Cargo.toml @@ -4,7 +4,7 @@ description = "A clean, ergonomic Rust client for NEAR Protocol" keywords = ["near", "blockchain", "crypto", "web3"] categories = ["api-bindings", "cryptography::cryptocurrencies"] readme = "../../README.md" -version = "0.14.0" +version = "0.15.0" edition.workspace = true license.workspace = true repository.workspace = true