Skip to content

Commit

Permalink
update deps and version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
Fraser999 committed Apr 28, 2023
1 parent 5378449 commit 32dfabc
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 29 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.9] - 2023-04-28

### Changed
* Update dependencies.



## [2.0.8] - 2023-04-20

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


[Keep a Changelog]: https://keepachangelog.com/en/1.0.0
[unreleased]: https://github.com/casper-ecosystem/cargo-casper/compare/v2.0.8...dev
[unreleased]: https://github.com/casper-ecosystem/cargo-casper/compare/v2.0.9...dev
[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
[2.0.6]: https://github.com/casper-ecosystem/cargo-casper/compare/v2.0.5...v2.0.6
Expand Down
49 changes: 24 additions & 25 deletions 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 Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cargo-casper"
version = "2.0.8"
version = "2.0.9"
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 Down
4 changes: 2 additions & 2 deletions src/common.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ 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"));
pub static CL_ENGINE_TEST_SUPPORT: Lazy<Dependency> =
Lazy::new(|| Dependency::new("casper-engine-test-support", "3.1.0"));
Lazy::new(|| Dependency::new("casper-engine-test-support", "3.1.1"));
pub static CL_EXECUTION_ENGINE: Lazy<Dependency> =
Lazy::new(|| Dependency::new("casper-execution-engine", "3.1.0"));
Lazy::new(|| Dependency::new("casper-execution-engine", "3.1.1"));
pub static PATCH_SECTION: Lazy<String> = Lazy::new(|| match ARGS.casper_overrides() {
Some(CasperOverrides::WorkspacePath(path)) => {
format!(
Expand Down

0 comments on commit 32dfabc

Please sign in to comment.