Skip to content

Commit

Permalink
Merge pull request #28 from Fraser999/version-bump
Browse files Browse the repository at this point in the history
Version bump to 1.5.0
  • Loading branch information
Fraser999 authored May 13, 2022
2 parents bd8fbcc + 9e30d05 commit 6e5671c
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,13 @@ All notable changes to this project will be documented in this file. The format



## [1.4.5] - 2022-05-13

### Changed
* Update dependencies.



## [1.4.4] - 2022-04-06

### Changed
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "casper-client"
version = "1.4.4" # when updating, also update 'html_root_url' in lib.rs
version = "1.5.0" # when updating, also update 'html_root_url' in lib.rs
authors = ["Marc Brinkmann <marc@casperlabs.io>", "Fraser Hutchison <fraser@casperlabs.io>"]
edition = "2018"
description = "A client library and binary for interacting with the Casper network"
Expand All @@ -24,8 +24,8 @@ doc = false
async-trait = "0.1.51"
base16 = "0.2.1"
base64 = "0.13.0"
casper-execution-engine = "1.4.4"
casper-node = "1.4.5"
casper-execution-engine = "2.0.0"
casper-node = "1.4.6"
casper-hashing = "1.4.3"
casper-types = "1.5.0"
clap = "2"
Expand Down
2 changes: 1 addition & 1 deletion lib/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//! # Casper node client library
#![doc(
html_root_url = "https://docs.rs/casper-client/1.4.4",
html_root_url = "https://docs.rs/casper-client/1.5.0",
html_favicon_url = "https://raw.githubusercontent.com/CasperLabs/casper-node/master/images/CasperLabs_Logo_Favicon_RGB_50px.png",
html_logo_url = "https://raw.githubusercontent.com/CasperLabs/casper-node/master/images/CasperLabs_Logo_Symbol_RGB.png",
test(attr(forbid(warnings)))
Expand Down
3 changes: 3 additions & 0 deletions src/deploy/creation_common.rs
Original file line number Diff line number Diff line change
Expand Up @@ -284,6 +284,7 @@ pub(super) mod dependencies {
.display_order(DisplayOrder::Dependencies as usize)
}

#[allow(clippy::iter_overeager_cloned)]
pub(in crate::deploy) fn get<'a>(matches: &'a ArgMatches) -> Vec<&'a str> {
matches
.values_of(ARG_NAME)
Expand Down Expand Up @@ -373,6 +374,7 @@ pub(super) mod arg_simple {
.requires(super::session::ARG_NAME)
}

#[allow(clippy::iter_overeager_cloned)]
pub fn get<'a>(matches: &'a ArgMatches) -> Vec<&'a str> {
matches
.values_of(ARG_NAME)
Expand All @@ -393,6 +395,7 @@ pub(super) mod arg_simple {
.requires(super::payment::ARG_NAME)
}

#[allow(clippy::iter_overeager_cloned)]
pub fn get<'a>(matches: &'a ArgMatches) -> Vec<&'a str> {
matches
.values_of(ARG_NAME)
Expand Down

0 comments on commit 6e5671c

Please sign in to comment.