Skip to content

Commit

Permalink
Merge #2264
Browse files Browse the repository at this point in the history
2264: Bump to 1.4.1 r=sacherjj a=sacherjj



Co-authored-by: Joe Sacher <[email protected]>
  • Loading branch information
casperlabs-bors-ng[bot] and sacherjj authored Oct 22, 2021
2 parents 5f6146a + 2a81171 commit dd260c8
Show file tree
Hide file tree
Showing 24 changed files with 103 additions and 103 deletions.
66 changes: 33 additions & 33 deletions Cargo.lock

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

10 changes: 5 additions & 5 deletions client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "casper-client"
version = "1.4.0"
version = "1.4.1"
authors = ["Marc Brinkmann <[email protected]>", "Fraser Hutchison <[email protected]>"]
edition = "2018"
description = "A client for interacting with the Casper network"
Expand All @@ -23,10 +23,10 @@ doc = false
[dependencies]
async-trait = "0.1.50"
base64 = "0.13.0"
casper-execution-engine = { version = "1.4.0", path = "../execution_engine" }
casper-node = { version = "1.4.0", path = "../node" }
casper-hashing = { version = "1.4.0", path = "../hashing" }
casper-types = { version = "1.4.0", path = "../types" }
casper-execution-engine = { version = "1.4.1", path = "../execution_engine" }
casper-node = { version = "1.4.1", path = "../node" }
casper-hashing = { version = "1.4.1", path = "../hashing" }
casper-types = { version = "1.4.1", path = "../types" }
clap = "2"
hex = { version = "0.4.2", features = ["serde"] }
humantime = "2"
Expand Down
6 changes: 3 additions & 3 deletions execution_engine/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "casper-execution-engine"
version = "1.4.0" # when updating, also update 'html_root_url' in lib.rs
version = "1.4.1" # when updating, also update 'html_root_url' in lib.rs
authors = ["Henry Till <[email protected]>", "Ed Hastings <[email protected]>"]
edition = "2018"
description = "CasperLabs execution engine crates."
Expand All @@ -14,8 +14,8 @@ license-file = "../LICENSE"
anyhow = "1.0.33"
base16 = "0.2.1"
bincode = "1.3.1"
casper-hashing = { version = "1.4.0", path = "../hashing" }
casper-types = { version = "1.4.0", path = "../types", default-features = false, features = ["datasize", "gens", "json-schema"] }
casper-hashing = { version = "1.4.1", path = "../hashing" }
casper-types = { version = "1.4.1", path = "../types", default-features = false, features = ["datasize", "gens", "json-schema"] }
chrono = "0.4.10"
datasize = "0.2.4"
hex = { version = "0.4.2", default-features = false, features = ["serde"] }
Expand Down
2 changes: 1 addition & 1 deletion execution_engine/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//! The engine which executes smart contracts on the Casper network.
#![doc(html_root_url = "https://docs.rs/casper-execution-engine/1.4.0")]
#![doc(html_root_url = "https://docs.rs/casper-execution-engine/1.4.1")]
#![doc(
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",
Expand Down
2 changes: 1 addition & 1 deletion execution_engine_testing/cargo_casper/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cargo-casper"
version = "1.4.0"
version = "1.4.1"
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
6 changes: 3 additions & 3 deletions execution_engine_testing/cargo_casper/src/common.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ use once_cell::sync::Lazy;
use crate::{dependency::Dependency, ARGS, FAILURE_EXIT_CODE};

pub static CL_CONTRACT: Lazy<Dependency> =
Lazy::new(|| Dependency::new("casper-contract", "1.4.0"));
pub static CL_TYPES: Lazy<Dependency> = Lazy::new(|| Dependency::new("casper-types", "1.4.0"));
Lazy::new(|| Dependency::new("casper-contract", "1.4.1"));
pub static CL_TYPES: Lazy<Dependency> = Lazy::new(|| Dependency::new("casper-types", "1.4.1"));
pub static CL_ENGINE_TEST_SUPPORT: Lazy<Dependency> =
Lazy::new(|| Dependency::new("casper-engine-test-support", "1.4.0"));
Lazy::new(|| Dependency::new("casper-engine-test-support", "1.4.1"));
pub static PATCH_SECTION: Lazy<String> = Lazy::new(|| match ARGS.workspace_path() {
Some(workspace_path) => {
format!(
Expand Down
10 changes: 5 additions & 5 deletions execution_engine_testing/test_support/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "casper-engine-test-support"
version = "1.4.0" # when updating, also update 'html_root_url' in lib.rs
version = "1.4.1" # when updating, also update 'html_root_url' in lib.rs
authors = ["Fraser Hutchison <[email protected]>"]
edition = "2018"
description = "Library to support testing of Wasm smart contracts for use on the Casper network."
Expand All @@ -11,10 +11,10 @@ repository = "https://github.com/CasperLabs/casper-node/tree/master/execution_en
license-file = "../../LICENSE"

[dependencies]
casper-contract = { version = "1.4.0", path = "../../smart_contracts/contract", default-features = false }
casper-execution-engine = { version = "1.4.0", path = "../../execution_engine", features = ["gens"] }
casper-types = { version = "1.4.0", path = "../../types" }
casper-hashing = { version = "1.4.0", path = "../../hashing" }
casper-contract = { version = "1.4.1", path = "../../smart_contracts/contract", default-features = false }
casper-execution-engine = { version = "1.4.1", path = "../../execution_engine", features = ["gens"] }
casper-types = { version = "1.4.1", path = "../../types" }
casper-hashing = { version = "1.4.1", path = "../../hashing" }
lmdb = "0.8.0"
log = "0.4.8"
num-rational = "0.4.0"
Expand Down
2 changes: 1 addition & 1 deletion execution_engine_testing/test_support/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
//! assert_eq!(expected_value, returned_value);
//! ```
#![doc(html_root_url = "https://docs.rs/casper-engine-test-support/1.4.0")]
#![doc(html_root_url = "https://docs.rs/casper-engine-test-support/1.4.1")]
#![doc(
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",
Expand Down
2 changes: 1 addition & 1 deletion hashing/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "casper-hashing"
version = "1.4.0"
version = "1.4.1"
edition = "2018"
description = "A library providing hashing functionality including Merkle Proof utilities."
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion hashing/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//! A library providing hashing functionality including Merkle Proof utilities.
#![doc(html_root_url = "https://docs.rs/casper-hashing/1.4.0")]
#![doc(html_root_url = "https://docs.rs/casper-hashing/1.4.1")]
#![doc(
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",
Expand Down
10 changes: 5 additions & 5 deletions node/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "casper-node"
version = "1.4.0" # when updating, also update 'html_root_url' in lib.rs
version = "1.4.1" # when updating, also update 'html_root_url' in lib.rs
authors = ["Marc Brinkmann <[email protected]>", "Fraser Hutchison <[email protected]>"]
edition = "2018"
description = "The Casper blockchain node"
Expand All @@ -20,10 +20,10 @@ base16 = "0.2.1"
base64 = "0.13.0"
bincode = "1"
bytes = "1.0.1"
casper-execution-engine = { version = "1.4.0", path = "../execution_engine" }
casper-node-macros = { version = "1.4.0", path = "../node_macros" }
casper-hashing = { version = "1.4.0", path = "../hashing" }
casper-types = { version = "1.4.0", path = "../types", features = ["datasize", "gens", "json-schema"] }
casper-execution-engine = { version = "1.4.1", path = "../execution_engine" }
casper-node-macros = { version = "1.4.1", path = "../node_macros" }
casper-hashing = { version = "1.4.1", path = "../hashing" }
casper-types = { version = "1.4.1", path = "../types", features = ["datasize", "gens", "json-schema"] }
chrono = "0.4.10"
datasize = { version = "0.2.9", features = ["detailed", "fake_clock-types", "futures-types", "smallvec-types"] }
derive_more = "0.99.7"
Expand Down
2 changes: 1 addition & 1 deletion node/src/components/rpc_server/rpcs/docs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ use crate::{
};

pub(crate) const DOCS_EXAMPLE_PROTOCOL_VERSION: ProtocolVersion =
ProtocolVersion::from_parts(1, 4, 0);
ProtocolVersion::from_parts(1, 4, 1);

const DEFINITIONS_PATH: &str = "#/components/schemas/";

Expand Down
2 changes: 1 addition & 1 deletion node/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
//! While the [`main`](fn.main.html) function is the central entrypoint for the node application,
//! its core event loop is found inside the [reactor](reactor/index.html).
#![doc(html_root_url = "https://docs.rs/casper-node/1.4.0")]
#![doc(html_root_url = "https://docs.rs/casper-node/1.4.1")]
#![doc(
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",
Expand Down
2 changes: 1 addition & 1 deletion node_macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "casper-node-macros"
version = "1.4.0"
version = "1.4.1"
authors = ["Marc Brinkmann <[email protected]>"]
edition = "2018"
description = "A macro to create reactor implementations for the casper-node."
Expand Down
Loading

0 comments on commit dd260c8

Please sign in to comment.