diff --git a/CHANGELOG.md b/CHANGELOG.md index c7cbbc9e..9234042f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ ## [Unreleased] +## [0.14.0](https://github.com/near/near-workspaces-rs/compare/near-workspaces-v0.13.0...near-workspaces-v0.14.0) - 2024-09-12 + +### Other + +- [**breaking**] Updated near-* dependencies to 0.26 release ([#377](https://github.com/near/near-workspaces-rs/pull/377)) + ## [0.13.0](https://github.com/near/near-workspaces-rs/compare/near-workspaces-v0.12.0...near-workspaces-v0.13.0) - 2024-09-10 ### Other diff --git a/examples/Cargo.toml b/examples/Cargo.toml index 9fbdfcf8..c48ad9ae 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -9,8 +9,8 @@ anyhow = "1.0" maplit = "1.0" near-units = "0.2.0" near-gas = { version = "0.3", features = ["serde", "borsh", "schemars"] } -near-jsonrpc-primitives = "0.25" -near-primitives = "0.25" +near-jsonrpc-primitives = "0.26" +near-primitives = "0.26" serde = "1.0" serde_with = "3.4" serde_json = { version = "1.0" } diff --git a/examples/noop-contract/Cargo.toml b/examples/noop-contract/Cargo.toml index 7b0d6e15..e89f6482 100644 --- a/examples/noop-contract/Cargo.toml +++ b/examples/noop-contract/Cargo.toml @@ -8,7 +8,7 @@ edition = "2018" crate-type = ["cdylib"] [dependencies] -near-sdk = "5.4.0" +near-sdk = "5.5.0" [profile.release] codegen-units = 1 diff --git a/examples/simple-contract/Cargo.toml b/examples/simple-contract/Cargo.toml index f4b5c738..f439c544 100644 --- a/examples/simple-contract/Cargo.toml +++ b/examples/simple-contract/Cargo.toml @@ -8,7 +8,7 @@ edition = "2018" crate-type = ["cdylib"] [dependencies] -near-sdk = "5.4.0" +near-sdk = "5.5.0" [profile.release] codegen-units = 1 diff --git a/workspaces/Cargo.toml b/workspaces/Cargo.toml index 0521eb02..c2ddc883 100644 --- a/workspaces/Cargo.toml +++ b/workspaces/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "near-workspaces" -version = "0.13.0" +version = "0.14.0" edition = "2018" license = "MIT OR Apache-2.0" readme = "README.md" @@ -33,14 +33,14 @@ url = { version = "2.2.2", features = ["serde"] } near-abi-client = "0.1.1" near-gas = { version = "0.3", features = ["serde", "borsh", "schemars"] } near-token = { version = "0.3", features = ["serde"] } -near-sdk = { version = "5.4", optional = true } +near-sdk = { version = "5.5", optional = true } near-account-id = "1.0.0" -near-crypto = "0.25" -near-primitives = "0.25" -near-jsonrpc-primitives = "0.25" -near-jsonrpc-client = { version = "0.12", features = ["sandbox"] } +near-crypto = "0.26" +near-primitives = "0.26" +near-jsonrpc-primitives = "0.26" +near-jsonrpc-client = { version = "0.13", features = ["sandbox"] } near-sandbox-utils = "0.10" -near-chain-configs = { version = "0.25", optional = true } +near-chain-configs = { version = "0.26", optional = true } [build-dependencies] near-sandbox-utils = "0.10" @@ -51,7 +51,7 @@ libc = "0.2" [dev-dependencies] anyhow = "1.0" futures = "0.3" -near-sdk = "5.4" +near-sdk = "5.5" test-log = { version = "0.2.8", default-features = false, features = ["trace"] } tracing-subscriber = { version = "0.3.5", features = ["env-filter"] } diff --git a/workspaces/tests/test-contracts/status-message/Cargo.toml b/workspaces/tests/test-contracts/status-message/Cargo.toml index b2a49c3c..91c8e980 100644 --- a/workspaces/tests/test-contracts/status-message/Cargo.toml +++ b/workspaces/tests/test-contracts/status-message/Cargo.toml @@ -8,7 +8,7 @@ edition = "2018" crate-type = ["cdylib"] [dependencies] -near-sdk = "5.4.0" +near-sdk = "5.5.0" [profile.release] codegen-units = 1 diff --git a/workspaces/tests/test-contracts/type-serialize/Cargo.toml b/workspaces/tests/test-contracts/type-serialize/Cargo.toml index f9dfba81..2d07e368 100644 --- a/workspaces/tests/test-contracts/type-serialize/Cargo.toml +++ b/workspaces/tests/test-contracts/type-serialize/Cargo.toml @@ -9,7 +9,7 @@ crate-type = ["cdylib"] [dependencies] bs58 = "0.5" -near-sdk = "5.4.0" +near-sdk = "5.5.0" [profile.release] codegen-units = 1