Skip to content

Commit

Permalink
Merge branch 'main' into remove-using-tla-on-testnet
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexKushnir1 authored Sep 26, 2024
2 parents 48ca462 + 05e3909 commit adec38f
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 14 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand Down
2 changes: 1 addition & 1 deletion examples/noop-contract/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion examples/simple-contract/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
16 changes: 8 additions & 8 deletions workspaces/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down Expand Up @@ -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"
Expand All @@ -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"] }

Expand Down
2 changes: 1 addition & 1 deletion workspaces/tests/test-contracts/status-message/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion workspaces/tests/test-contracts/type-serialize/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit adec38f

Please sign in to comment.