Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
drewstone committed Jun 16, 2021
1 parent df5fcc4 commit d84e584
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 15 deletions.
10 changes: 5 additions & 5 deletions node/cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "edgeware-cli"
version = "3.3.0"
version = "3.3.1"
authors = ["Commonwealth Labs <[email protected]>"]
description = "Edgeware implementation using a substrate node."
build = "build.rs"
Expand Down Expand Up @@ -95,10 +95,10 @@ pallet-dynamic-fee = { git = "https://github.com/webb-tools/frontier", branch =
pallet-evm = { git = "https://github.com/webb-tools/frontier", branch = "erup-4" }

# node-specific dependencies
edgeware-runtime = { version = "3.3.0", path = "../runtime", default-features = false }
edgeware-rpc = { version = "3.3.0", path = "../rpc" }
edgeware-primitives = { version = "3.3.0", path = "../primitives", default-features = false }
edgeware-executor = { version = "3.3.0", path = "../executor", default-features = false }
edgeware-runtime = { version = "3.3.1", path = "../runtime", default-features = false }
edgeware-rpc = { version = "3.3.1", path = "../rpc" }
edgeware-primitives = { version = "3.3.1", path = "../primitives", default-features = false }
edgeware-executor = { version = "3.3.1", path = "../executor", default-features = false }
edgeware-rpc-txpool = { path = "../../client/rpc/txpool", default-features = false }
edgeware-rpc-primitives-txpool = { path = "../txpool", default-features = false }
edgeware-rpc-debug = { path = "../../client/rpc/debug", default-features = false }
Expand Down
8 changes: 4 additions & 4 deletions node/executor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "edgeware-executor"
version = "3.3.0"
version = "3.3.1"
authors = ["Commonwealth Labs <[email protected]>"]
description = "Edgeware implementation using a substrate node."
edition = "2018"
Expand All @@ -19,9 +19,9 @@ sp-core = { version = "3.0" }
sp-trie = { version = "3.0" }
frame-benchmarking = { version = "3.0" }

edgeware-primitives = { version = "3.3.0", path = "../primitives" }
edgeware-runtime = { version = "3.3.0", path = "../runtime" }
edgeware-runtime-interface = { version = "3.3.0", path = "../runtime-interface" }
edgeware-primitives = { version = "3.3.1", path = "../primitives" }
edgeware-runtime = { version = "3.3.1", path = "../runtime" }
edgeware-runtime-interface = { version = "3.3.1", path = "../runtime-interface" }

[dev-dependencies]
sp-runtime = { version = "3.0" }
Expand Down
2 changes: 1 addition & 1 deletion node/primitives/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "edgeware-primitives"
version = "3.3.0"
version = "3.3.1"
authors = ["Commonwealth Labs <[email protected]>"]
edition = "2018"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
Expand Down
2 changes: 1 addition & 1 deletion node/rpc-client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "edgeware-rpc-client"
version = "3.3.0"
version = "3.3.1"
authors = ["Commonwealth Labs <[email protected]>"]
edition = "2018"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
Expand Down
2 changes: 1 addition & 1 deletion node/rpc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "edgeware-rpc"
version = "3.3.0"
version = "3.3.1"
authors = ["Commonwealth Labs <[email protected]>"]
edition = "2018"
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
Expand Down
2 changes: 1 addition & 1 deletion node/runtime-interface/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "edgeware-runtime-interface"
version = "3.3.0"
version = "3.3.1"
authors = ["Commonwealth Labs <[email protected]>"]
description = "Edgeware runtime interface helpers and functions"
edition = "2018"
Expand Down
4 changes: 2 additions & 2 deletions node/runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "edgeware-runtime"
version = "3.3.0"
version = "3.3.1"
authors = ["Commonwealth Labs <[email protected]>"]
edition = "2018"
build = "build.rs"
Expand Down Expand Up @@ -46,7 +46,7 @@ sp-offchain = { version = "3.0", default-features = false }
sp-npos-elections = { version = "3.0", default-features = false }

# edgeware primitives
edgeware-primitives = { version = "3.3.0", path = "../primitives", default-features = false }
edgeware-primitives = { version = "3.3.1", path = "../primitives", default-features = false }
edgeware-evm-tracer = { path = "../evm_tracer", default-features = false }
edgeware-rpc-primitives-debug = { path = "../debug", default-features = false }
edgeware-rpc-primitives-txpool = { path = "../txpool", default-features = false }
Expand Down

0 comments on commit d84e584

Please sign in to comment.