From e9259fa219cce339d0b6cc716b4c32abfe31d691 Mon Sep 17 00:00:00 2001 From: Vlad Frolov Date: Thu, 14 Nov 2024 21:24:46 +0700 Subject: [PATCH] chore: release v5.5.1 --- CHANGELOG.md | 9 +++++++++ Cargo.toml | 2 +- near-contract-standards/Cargo.toml | 2 +- near-sdk/Cargo.toml | 2 +- 4 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e7ce7d105..d163beb70 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ ## [Unreleased] +## [5.5.1](https://github.com/near/near-sdk-rs/compare/near-sdk-v5.5.0...near-sdk-v5.5.1) - 2024-11-14 + +### Other + +- updates near-* dependencies to 0.27 release ([#1254](https://github.com/near/near-sdk-rs/pull/1254)) +- freeze 1.81 for near-workspaces paths (temporarily) ([#1250](https://github.com/near/near-sdk-rs/pull/1250)) +- Benchmark near collections and provide the results as the reference in the docs ([#1248](https://github.com/near/near-sdk-rs/pull/1248)) +- Updated near-workspaces to 0.14 version (matching 0.26 near-* release) ([#1246](https://github.com/near/near-sdk-rs/pull/1246)) + ## [5.5.0](https://github.com/near/near-sdk-rs/compare/near-sdk-v5.4.0...near-sdk-v5.5.0) - 2024-09-11 ### Other diff --git a/Cargo.toml b/Cargo.toml index a27e334a8..400618a46 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ members = ["near-sdk", "near-sdk-macros", "near-contract-standards", "near-sys"] exclude = ["examples/"] [workspace.package] -version = "5.5.0" +version = "5.5.1" # Special triple # comment for ci. [patch.crates-io] diff --git a/near-contract-standards/Cargo.toml b/near-contract-standards/Cargo.toml index 432041ca9..a6bdc39ce 100644 --- a/near-contract-standards/Cargo.toml +++ b/near-contract-standards/Cargo.toml @@ -13,7 +13,7 @@ NEAR smart contracts standard library. """ [dependencies] -near-sdk = { path = "../near-sdk", version = "~5.5.0", default-features = false, features = [ +near-sdk = { path = "../near-sdk", version = "~5.5.1", default-features = false, features = [ "legacy", ] } diff --git a/near-sdk/Cargo.toml b/near-sdk/Cargo.toml index 30768dd61..2a4e86ac5 100644 --- a/near-sdk/Cargo.toml +++ b/near-sdk/Cargo.toml @@ -21,7 +21,7 @@ required-features = ["abi", "unstable"] # Provide near_bidgen macros. serde = { version = "1", features = ["derive"] } serde_json = "1" -near-sdk-macros = { path = "../near-sdk-macros", version = "~5.5.0" } +near-sdk-macros = { path = "../near-sdk-macros", version = "~5.5.1" } near-sys = { path = "../near-sys", version = "0.2.2" } base64 = "0.22" borsh = { version = "1.0.0", features = ["derive"] }