Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 6 additions & 0 deletions crates/near-kit-macros/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`.
Expand Down
2 changes: 1 addition & 1 deletion crates/near-kit-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
17 changes: 17 additions & 0 deletions crates/near-kit/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion crates/near-kit/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down