Skip to content

Commit

Permalink
chore: Updated near-* dependencies to 0.26 release (#220)
Browse files Browse the repository at this point in the history
  • Loading branch information
akorchyn committed Sep 12, 2024
1 parent 0a9d68f commit c8ecdc8
Show file tree
Hide file tree
Showing 6 changed files with 62 additions and 62 deletions.
90 changes: 45 additions & 45 deletions Cargo.lock

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

Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ container_build_command = ["cargo", "near", "build"]
near-sdk = "5.4"

[dev-dependencies]
near-sdk = { version = "5.4", features = ["unit-testing"] }
near-workspaces = { version = "0.13.0", features = ["unstable"] }
near-sdk = { version = "5.5", features = ["unit-testing"] }
near-workspaces = { version = "0.14.0", features = ["unstable"] }
tokio = { version = "1.12.0", features = ["full"] }
serde_json = "1"

Expand Down
2 changes: 1 addition & 1 deletion integration-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ syn = "2"
tempfile = "3.3"
tokio = "1.0"
quote = "1.0"
near-workspaces = "0.13.0"
near-workspaces = "0.14.0"
zstd = "0.13"
env_logger = "0.11.5"
log = "0.4"
20 changes: 10 additions & 10 deletions integration-tests/docker-build-template/Cargo.lock

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

2 changes: 1 addition & 1 deletion integration-tests/docker-build-template/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ crate-type = ["cdylib", "rlib"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
near-sdk = { version = "5.4" }
near-sdk = { version = "5.5" }

[package.metadata.near.reproducible_build]
image = "sourcescan/cargo-near:0.8.2-rust-1.80.1"
Expand Down
6 changes: 3 additions & 3 deletions integration-tests/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@
pub mod from_crates_io {
use const_format::formatcp;

pub const SDK_VERSION: &str = "5.4.0";
pub const SDK_VERSION: &str = "5.5.0";
pub const SDK_VERSION_TOML: &str = formatcp!(r#"version = "{SDK_VERSION}""#);
}

/// NOTE: this version is version of near-sdk in arbitrary revision from N.x.x development cycle
pub mod from_git {
use const_format::formatcp;

pub const SDK_VERSION: &str = "5.4.0";
pub const SDK_REVISION: &str = "9c68e71bf3ac51f9e8cec4b871890b15b5ac0b35";
pub const SDK_VERSION: &str = "5.5.0";
pub const SDK_REVISION: &str = "f5caed2af27e0c3984d34c3d1c943d6020b7ad2c";
pub const SDK_SHORT_VERSION_TOML: &str = formatcp!(r#"version = "{SDK_VERSION}""#);
pub const SDK_REPO: &str = "https://github.com/near/near-sdk-rs.git";
pub const SDK_VERSION_TOML: &str =
Expand Down

0 comments on commit c8ecdc8

Please sign in to comment.