Skip to content

Commit

Permalink
Merge pull request #57 from Fraser999/update-release-2.0.10
Browse files Browse the repository at this point in the history
v2.0.10 version bump
  • Loading branch information
sacherjj authored May 10, 2023
2 parents 7d4a601 + 319d256 commit f5a2ff7
Show file tree
Hide file tree
Showing 4 changed files with 64 additions and 66 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,13 @@ All notable changes to this project will be documented in this file. The format



## [2.0.10] - 2023-05-09

### Changed
* Update dependencies.



## [2.0.9] - 2023-04-28

### Changed
Expand Down Expand Up @@ -173,7 +180,8 @@ No changes.


[Keep a Changelog]: https://keepachangelog.com/en/1.0.0
[unreleased]: https://github.com/casper-ecosystem/cargo-casper/compare/v2.0.9...dev
[unreleased]: https://github.com/casper-ecosystem/cargo-casper/compare/v2.0.10...dev
[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
[2.0.7]: https://github.com/casper-ecosystem/cargo-casper/compare/v2.0.6...v2.0.7
Expand Down
98 changes: 44 additions & 54 deletions Cargo.lock

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

14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cargo-casper"
version = "2.0.9"
version = "2.0.10"
authors = ["Fraser Hutchison <[email protected]>"]
edition = "2018"
description = "A command line tool for creating a Wasm smart contract and tests for use on the Casper network."
Expand All @@ -12,13 +12,13 @@ license = "Apache-2.0"
include = ["src/*.rs", "Cargo.lock", "Cargo.toml", "resources/*"]

[dependencies]
clap = { version = "4", features = ["cargo", "deprecated", "wrap_help"] }
colour = "0.7"
once_cell = "1"
clap = { version = "4.2.7", features = ["cargo", "deprecated", "wrap_help"] }
colour = "0.7.0"
once_cell = "1.17.1"

[dev-dependencies]
# `assert_cmd` pinned until we update the Rust nightly version in `resources/rust-toolchain.in`
assert_cmd = "=2.0.10"
reqwest = { version = "0.11.16", features = ["blocking"] }
serde_json = "1"
tempfile = "3"
reqwest = { version = "0.11.17", features = ["blocking"] }
serde_json = "1.0.96"
tempfile = "3.5.0"
8 changes: 4 additions & 4 deletions src/common.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ use once_cell::sync::Lazy;
use crate::{dependency::Dependency, CasperOverrides, ARGS, FAILURE_EXIT_CODE};

pub static CL_CONTRACT: Lazy<Dependency> =
Lazy::new(|| Dependency::new("casper-contract", "1.4.4"));
pub static CL_TYPES: Lazy<Dependency> = Lazy::new(|| Dependency::new("casper-types", "1.6.0"));
Lazy::new(|| Dependency::new("casper-contract", "2.0.0"));
pub static CL_TYPES: Lazy<Dependency> = Lazy::new(|| Dependency::new("casper-types", "2.0.0"));
pub static CL_ENGINE_TEST_SUPPORT: Lazy<Dependency> =
Lazy::new(|| Dependency::new("casper-engine-test-support", "3.1.1"));
Lazy::new(|| Dependency::new("casper-engine-test-support", "4.0.0"));
pub static CL_EXECUTION_ENGINE: Lazy<Dependency> =
Lazy::new(|| Dependency::new("casper-execution-engine", "3.1.1"));
Lazy::new(|| Dependency::new("casper-execution-engine", "4.0.0"));
pub static PATCH_SECTION: Lazy<String> = Lazy::new(|| match ARGS.casper_overrides() {
Some(CasperOverrides::WorkspacePath(path)) => {
format!(
Expand Down

0 comments on commit f5a2ff7

Please sign in to comment.