Skip to content

Commit dfa77e7

Browse files
authored
Merge pull request #170 from casper-network/version-bump-2.0.4
Version bump 2.0.4
2 parents faa2e94 + 313568b commit dfa77e7

File tree

11 files changed

+13
-13
lines changed

11 files changed

+13
-13
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

execution_engine/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ bincode = "1.3.1"
1717
blake2 = { version = "0.10.6", default-features = false }
1818
blake3 = { version = "1.5.0", default-features = false, features = ["pure"] }
1919
sha2 = { version = "0.10.8", default-features = false }
20-
casper-storage = { version = "2.1.1", path = "../storage", default-features = true }
20+
casper-storage = { version = "3.0.0", path = "../storage", default-features = true }
2121
casper-types = { version = "6.0.1", path = "../types", default-features = false, features = ["datasize", "gens", "json-schema", "std"] }
2222
casper-wasm = { version = "1.0.0", default-features = false, features = ["sign_ext", "call_indirect_overlong"] }
2323
casper-wasm-utils = { version = "4.0.0", default-features = false, features = ["sign_ext", "call_indirect_overlong"] }

execution_engine_testing/test_support/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ license = "Apache-2.0"
1212

1313
[dependencies]
1414
blake2 = "0.9.0"
15-
casper-storage = { version = "2.1.1", path = "../../storage" }
15+
casper-storage = { version = "3.0.0", path = "../../storage" }
1616
casper-types = { version = "6.0.1", path = "../../types" }
1717
env_logger = "0.10.0"
1818
casper-execution-engine = { version = "8.1.1", path = "../../execution_engine", features = ["test-support"] }

executor/wasm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ casper-executor-wasm-common = { version = "0.1.3", path = "../wasm_common" }
1616
casper-executor-wasm-host = { version = "0.1.3", path = "../wasm_host" }
1717
casper-executor-wasm-interface = { version = "0.1.3", path = "../wasm_interface" }
1818
casper-executor-wasmer-backend = { version = "0.1.3", path = "../wasmer_backend" }
19-
casper-storage = { version = "2.1.1", path = "../../storage" }
19+
casper-storage = { version = "3.0.0", path = "../../storage" }
2020
casper-types = { version = "6.0.1", path = "../../types", features = ["std"] }
2121
casper-execution-engine = { version = "8.1.1", path = "../../execution_engine", features = [
2222
"test-support",

executor/wasm_host/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ base16 = "0.2"
1313
bytes = "1.10"
1414
casper-executor-wasm-common = { version = "0.1.3", path = "../wasm_common" }
1515
casper-executor-wasm-interface = { version = "0.1.3", path = "../wasm_interface" }
16-
casper-storage = { version = "2.1.1", path = "../../storage" }
16+
casper-storage = { version = "3.0.0", path = "../../storage" }
1717
casper-types = { version = "6.0.1", path = "../../types" }
1818
either = "1.15"
1919
num-derive = { workspace = true }

executor/wasm_interface/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ license = "Apache-2.0"
1212
bytes = "1.10"
1313
borsh = { version = "1.5", features = ["derive"] }
1414
casper-executor-wasm-common = { version = "0.1.3", path = "../wasm_common" }
15-
casper-storage = { version = "2.1.1", path = "../../storage" }
15+
casper-storage = { version = "3.0.0", path = "../../storage" }
1616
casper-types = { version = "6.0.1", path = "../../types" }
1717
parking_lot = "0.12"
1818
thiserror = "2"

executor/wasmer_backend/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ bytes = "1.10"
1313
casper-executor-wasm-common = { version = "0.1.3", path = "../wasm_common" }
1414
casper-executor-wasm-interface = { version = "0.1.3", path = "../wasm_interface" }
1515
casper-executor-wasm-host = { version = "0.1.0", path = "../wasm_host" }
16-
casper-storage = { version = "2.1.1", path = "../../storage" }
16+
casper-storage = { version = "3.0.0", path = "../../storage" }
1717
casper-contract-sdk-sys = { version = "0.1.3", path = "../../smart_contracts/sdk_sys" }
1818
casper-types = { version = "6.0.1", path = "../../types" }
1919
regex = "1.11"

node/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "casper-node"
3-
version = "2.0.3" # when updating, also update 'html_root_url' in lib.rs
3+
version = "2.0.4" # when updating, also update 'html_root_url' in lib.rs
44
authors = ["Ed Hastings <ed@casper.network>", "Karan Dhareshwar <karan@casper.network>"]
55
edition = "2021"
66
description = "The Casper blockchain node"
@@ -23,7 +23,7 @@ base64 = "0.13.0"
2323
bincode = "1"
2424
bytes = "1.0.1"
2525
casper-binary-port = { version = "1.1.1", path = "../binary_port" }
26-
casper-storage = { version = "2.1.1", path = "../storage" }
26+
casper-storage = { version = "3.0.0", path = "../storage" }
2727
casper-types = { version = "6.0.1", path = "../types", features = ["datasize", "json-schema", "std-fs-io"] }
2828
casper-execution-engine = { version = "8.1.1", path = "../execution_engine" }
2929
datasize = { version = "0.2.11", features = ["detailed", "fake_clock-types", "futures-types", "smallvec-types"] }

node/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
//! While the [`main`](fn.main.html) function is the central entrypoint for the node application,
99
//! its core event loop is found inside the [reactor](reactor/index.html).
1010
11-
#![doc(html_root_url = "https://docs.rs/casper-node/2.0.3")]
11+
#![doc(html_root_url = "https://docs.rs/casper-node/2.0.4")]
1212
#![doc(
1313
html_favicon_url = "https://raw.githubusercontent.com/casper-network/casper-node/blob/dev/images/Casper_Logo_Favicon_48.png",
1414
html_logo_url = "https://raw.githubusercontent.com/casper-network/casper-node/blob/dev/images/Casper_Logo_Favicon.png",

storage/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "casper-storage"
3-
version = "2.1.1"
3+
version = "3.0.0"
44
edition = "2018"
55
authors = ["Ed Hastings <ed@casper.network>"]
66
description = "Storage for a node on the Casper network."

0 commit comments

Comments
 (0)