Skip to content

Commit

Permalink
Merge pull request #59 from Fraser999/version-bump
Browse files Browse the repository at this point in the history
v2.1.0 version bump
  • Loading branch information
Fraser999 authored May 12, 2023
2 parents f8e5a8e + cb00e60 commit 173c44d
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nightly-scheduled-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
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.1.0] - 2023-05-12

### Changed
* Update dependencies to match casper-node release 1.5.0



## [2.0.10] - 2023-05-10

### Changed
Expand Down Expand Up @@ -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
Expand Down
18 changes: 9 additions & 9 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.10"
version = "2.1.0"
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
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", "2.0.0"));
pub static CL_TYPES: Lazy<Dependency> = Lazy::new(|| Dependency::new("casper-types", "2.0.0"));
Lazy::new(|| Dependency::new("casper-contract", "3.0.0"));
pub static CL_TYPES: Lazy<Dependency> = Lazy::new(|| Dependency::new("casper-types", "3.0.0"));
pub static CL_ENGINE_TEST_SUPPORT: Lazy<Dependency> =
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<Dependency> =
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<String> = Lazy::new(|| match ARGS.casper_overrides() {
Some(CasperOverrides::WorkspacePath(path)) => {
format!(
Expand Down

0 comments on commit 173c44d

Please sign in to comment.