From bb583554d7639cdb656ed53b1e330be63c396124 Mon Sep 17 00:00:00 2001 From: Vlad Frolov Date: Wed, 4 Sep 2024 15:15:45 +0200 Subject: [PATCH 1/2] chore: release --- CHANGELOG.md | 6 ++++++ Cargo.toml | 2 +- near-contract-standards/Cargo.toml | 2 +- near-sdk/Cargo.toml | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 19b85817d..2257fe2b5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ ## [Unreleased] +## [6.0.0](https://github.com/near/near-sdk-rs/compare/near-sdk-v5.3.0...near-sdk-v6.0.0) - 2024-09-04 + +### Other +- [**breaking**] upgrade to 0.25 release ([#1242](https://github.com/near/near-sdk-rs/pull/1242)) +- updated near-workspaces-rs ([#1239](https://github.com/near/near-sdk-rs/pull/1239)) + ## [5.3.0](https://github.com/near/near-sdk-rs/compare/near-sdk-v5.2.1...near-sdk-v5.3.0) - 2024-08-13 ### Added diff --git a/Cargo.toml b/Cargo.toml index f12bfca8c..1eb166d32 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ members = [ exclude = ["examples/"] [workspace.package] -version = "5.3.0" +version = "6.0.0" # Special triple # comment for ci. [patch.crates-io] diff --git a/near-contract-standards/Cargo.toml b/near-contract-standards/Cargo.toml index 5e0d8f2bd..0faaabbd2 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.3.0", default-features = false, features = ["legacy"] } +near-sdk = { path = "../near-sdk", version = "~6.0.0", default-features = false, features = ["legacy"] } [dev-dependencies] near-sdk = { path = "../near-sdk", default-features = false, features = ["unit-testing"] } diff --git a/near-sdk/Cargo.toml b/near-sdk/Cargo.toml index f1b0c3c65..de4835c75 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.3.0" } +near-sdk-macros = { path = "../near-sdk-macros", version = "~6.0.0" } near-sys = { path = "../near-sys", version = "0.2.2" } base64 = "0.22" borsh = { version = "1.0.0", features = ["derive"] } From 63678a3bfc42d280ed66c99d6e6b53c611b659ee Mon Sep 17 00:00:00 2001 From: akorchyn Date: Wed, 4 Sep 2024 19:58:01 +0300 Subject: [PATCH 2/2] replaced breaking release to non breaking --- CHANGELOG.md | 6 +++--- Cargo.toml | 9 ++------- near-contract-standards/Cargo.toml | 8 ++++++-- near-sdk/Cargo.toml | 2 +- 4 files changed, 12 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2257fe2b5..a2dd48605 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,11 +2,11 @@ ## [Unreleased] -## [6.0.0](https://github.com/near/near-sdk-rs/compare/near-sdk-v5.3.0...near-sdk-v6.0.0) - 2024-09-04 +## [5.4.0](https://github.com/near/near-sdk-rs/compare/near-sdk-v5.3.0...near-sdk-v5.4.0) - 2024-09-04 ### Other -- [**breaking**] upgrade to 0.25 release ([#1242](https://github.com/near/near-sdk-rs/pull/1242)) -- updated near-workspaces-rs ([#1239](https://github.com/near/near-sdk-rs/pull/1239)) +- updates near-* dependencies to 0.25.0 ([#1242](https://github.com/near/near-sdk-rs/pull/1242)) +- updates near-workspaces-rs ([#1239](https://github.com/near/near-sdk-rs/pull/1239)) ## [5.3.0](https://github.com/near/near-sdk-rs/compare/near-sdk-v5.2.1...near-sdk-v5.3.0) - 2024-08-13 diff --git a/Cargo.toml b/Cargo.toml index 1eb166d32..e90541710 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,15 +1,10 @@ [workspace] resolver = "2" -members = [ - "near-sdk", - "near-sdk-macros", - "near-contract-standards", - "near-sys", -] +members = ["near-sdk", "near-sdk-macros", "near-contract-standards", "near-sys"] exclude = ["examples/"] [workspace.package] -version = "6.0.0" +version = "5.4.0" # Special triple # comment for ci. [patch.crates-io] diff --git a/near-contract-standards/Cargo.toml b/near-contract-standards/Cargo.toml index 0faaabbd2..643c70145 100644 --- a/near-contract-standards/Cargo.toml +++ b/near-contract-standards/Cargo.toml @@ -13,10 +13,14 @@ NEAR smart contracts standard library. """ [dependencies] -near-sdk = { path = "../near-sdk", version = "~6.0.0", default-features = false, features = ["legacy"] } +near-sdk = { path = "../near-sdk", version = "~5.4.0", default-features = false, features = [ + "legacy", +] } [dev-dependencies] -near-sdk = { path = "../near-sdk", default-features = false, features = ["unit-testing"] } +near-sdk = { path = "../near-sdk", default-features = false, features = [ + "unit-testing", +] } [features] default = [] diff --git a/near-sdk/Cargo.toml b/near-sdk/Cargo.toml index de4835c75..25f4cec83 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 = "~6.0.0" } +near-sdk-macros = { path = "../near-sdk-macros", version = "~5.4.0" } near-sys = { path = "../near-sys", version = "0.2.2" } base64 = "0.22" borsh = { version = "1.0.0", features = ["derive"] }