Skip to content

Commit 6e5671c

Browse files
authored
Merge pull request #28 from Fraser999/version-bump
Version bump to 1.5.0
2 parents bd8fbcc + 9e30d05 commit 6e5671c

File tree

4 files changed

+14
-4
lines changed

4 files changed

+14
-4
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,13 @@ All notable changes to this project will be documented in this file. The format
1515

1616

1717

18+
## [1.4.5] - 2022-05-13
19+
20+
### Changed
21+
* Update dependencies.
22+
23+
24+
1825
## [1.4.4] - 2022-04-06
1926

2027
### Changed

Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "casper-client"
3-
version = "1.4.4" # when updating, also update 'html_root_url' in lib.rs
3+
version = "1.5.0" # when updating, also update 'html_root_url' in lib.rs
44
authors = ["Marc Brinkmann <[email protected]>", "Fraser Hutchison <[email protected]>"]
55
edition = "2018"
66
description = "A client library and binary for interacting with the Casper network"
@@ -24,8 +24,8 @@ doc = false
2424
async-trait = "0.1.51"
2525
base16 = "0.2.1"
2626
base64 = "0.13.0"
27-
casper-execution-engine = "1.4.4"
28-
casper-node = "1.4.5"
27+
casper-execution-engine = "2.0.0"
28+
casper-node = "1.4.6"
2929
casper-hashing = "1.4.3"
3030
casper-types = "1.5.0"
3131
clap = "2"

lib/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//! # Casper node client library
22
#![doc(
3-
html_root_url = "https://docs.rs/casper-client/1.4.4",
3+
html_root_url = "https://docs.rs/casper-client/1.5.0",
44
html_favicon_url = "https://raw.githubusercontent.com/CasperLabs/casper-node/master/images/CasperLabs_Logo_Favicon_RGB_50px.png",
55
html_logo_url = "https://raw.githubusercontent.com/CasperLabs/casper-node/master/images/CasperLabs_Logo_Symbol_RGB.png",
66
test(attr(forbid(warnings)))

src/deploy/creation_common.rs

+3
Original file line numberDiff line numberDiff line change
@@ -284,6 +284,7 @@ pub(super) mod dependencies {
284284
.display_order(DisplayOrder::Dependencies as usize)
285285
}
286286

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

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

398+
#[allow(clippy::iter_overeager_cloned)]
396399
pub fn get<'a>(matches: &'a ArgMatches) -> Vec<&'a str> {
397400
matches
398401
.values_of(ARG_NAME)

0 commit comments

Comments
 (0)