From cb00e6064d33f4ce3d37d90cfc85846bffe4daf8 Mon Sep 17 00:00:00 2001 From: Fraser Hutchison Date: Fri, 12 May 2023 11:10:44 +0100 Subject: [PATCH] updated dependencies and bumped version --- .github/workflows/nightly-scheduled-test.yml | 2 +- CHANGELOG.md | 10 +++++++++- Cargo.lock | 18 +++++++++--------- Cargo.toml | 2 +- src/common.rs | 8 ++++---- 5 files changed, 24 insertions(+), 16 deletions(-) diff --git a/.github/workflows/nightly-scheduled-test.yml b/.github/workflows/nightly-scheduled-test.yml index 1e1eaa8..92befc0 100644 --- a/.github/workflows/nightly-scheduled-test.yml +++ b/.github/workflows/nightly-scheduled-test.yml @@ -16,7 +16,7 @@ jobs: nightly-cargo-test: strategy: matrix: - branch: [dev, release-2.0.10] + branch: [dev, release-2.1.0] os: [ubuntu-20.04, ubuntu-22.04] runs-on: ${{ matrix.os }} steps: diff --git a/CHANGELOG.md b/CHANGELOG.md index e16d634..7541d12 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,13 @@ All notable changes to this project will be documented in this file. The format +## [2.1.0] - 2023-05-12 + +### Changed +* Update dependencies to match casper-node release 1.5.0 + + + ## [2.0.10] - 2023-05-10 ### Changed @@ -180,7 +187,8 @@ No changes. [Keep a Changelog]: https://keepachangelog.com/en/1.0.0 -[unreleased]: https://github.com/casper-ecosystem/cargo-casper/compare/v2.0.10...dev +[unreleased]: https://github.com/casper-ecosystem/cargo-casper/compare/v2.1.0...dev +[2.1.0]: https://github.com/casper-ecosystem/cargo-casper/compare/v2.0.10...v2.1.0 [2.0.10]: https://github.com/casper-ecosystem/cargo-casper/compare/v2.0.9...v2.0.10 [2.0.9]: https://github.com/casper-ecosystem/cargo-casper/compare/v2.0.8...v2.0.9 [2.0.8]: https://github.com/casper-ecosystem/cargo-casper/compare/v2.0.7...v2.0.8 diff --git a/Cargo.lock b/Cargo.lock index fd885a7..b4bc3e7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -104,9 +104,9 @@ dependencies = [ [[package]] name = "bumpalo" -version = "3.12.1" +version = "3.12.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9b1ce199063694f33ffb7dd4e0ee620741495c32833cde5aa08f02a0bf96f0c8" +checksum = "3c6ed94e98ecff0c12dd1b04c15ec0d7d9458ca8fe806cea6f12954efe74c63b" [[package]] name = "bytes" @@ -116,7 +116,7 @@ checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be" [[package]] name = "cargo-casper" -version = "2.0.10" +version = "2.1.0" dependencies = [ "assert_cmd", "clap", @@ -925,9 +925,9 @@ dependencies = [ [[package]] name = "serde" -version = "1.0.162" +version = "1.0.163" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "71b2f6e1ab5c2b98c05f0f35b236b22e8df7ead6ffbf51d7808da7f8817e7ab6" +checksum = "2113ab51b87a539ae008b5c6c02dc020ffa39afd2d83cffcb3f4eb2722cebec2" [[package]] name = "serde_json" @@ -1070,9 +1070,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.28.0" +version = "1.28.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c3c786bf8134e5a3a166db9b29ab8f48134739014a3eca7bc6bfa95d673b136f" +checksum = "0aa32867d44e6f2ce3385e89dceb990188b8bb0fb25b0cf576647a6f98ac5105" dependencies = [ "autocfg", "bytes", @@ -1127,9 +1127,9 @@ dependencies = [ [[package]] name = "tracing-core" -version = "0.1.30" +version = "0.1.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a" +checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a" dependencies = [ "once_cell", ] diff --git a/Cargo.toml b/Cargo.toml index 5764a67..e92b563 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-casper" -version = "2.0.10" +version = "2.1.0" authors = ["Fraser Hutchison "] edition = "2018" description = "A command line tool for creating a Wasm smart contract and tests for use on the Casper network." diff --git a/src/common.rs b/src/common.rs index de5b393..739624f 100644 --- a/src/common.rs +++ b/src/common.rs @@ -6,12 +6,12 @@ use once_cell::sync::Lazy; use crate::{dependency::Dependency, CasperOverrides, ARGS, FAILURE_EXIT_CODE}; pub static CL_CONTRACT: Lazy = - Lazy::new(|| Dependency::new("casper-contract", "2.0.0")); -pub static CL_TYPES: Lazy = Lazy::new(|| Dependency::new("casper-types", "2.0.0")); + Lazy::new(|| Dependency::new("casper-contract", "3.0.0")); +pub static CL_TYPES: Lazy = Lazy::new(|| Dependency::new("casper-types", "3.0.0")); pub static CL_ENGINE_TEST_SUPPORT: Lazy = - Lazy::new(|| Dependency::new("casper-engine-test-support", "4.0.0")); + Lazy::new(|| Dependency::new("casper-engine-test-support", "5.0.0")); pub static CL_EXECUTION_ENGINE: Lazy = - Lazy::new(|| Dependency::new("casper-execution-engine", "4.0.0")); + Lazy::new(|| Dependency::new("casper-execution-engine", "5.0.0")); pub static PATCH_SECTION: Lazy = Lazy::new(|| match ARGS.casper_overrides() { Some(CasperOverrides::WorkspacePath(path)) => { format!(