Skip to content

Commit

Permalink
Release v0.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Tore19 committed Sep 13, 2024
1 parent d0da607 commit c18884d
Show file tree
Hide file tree
Showing 32 changed files with 97 additions and 97 deletions.
56 changes: 28 additions & 28 deletions Cargo.lock

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

8 changes: 4 additions & 4 deletions node/bench/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "node-bench"
version = "0.6.2"
version = "0.6.3"
authors = ["Stafi Technologies <[email protected]>"]
description = "Stafi node integration benchmarks."
edition = "2018"
Expand All @@ -9,9 +9,9 @@ edition = "2018"

[dependencies]
log = "0.4.8"
node-primitives = { version = "0.6.2", path = "../primitives" }
node-testing = { version = "0.6.2", path = "../testing" }
node-runtime = { version = "0.6.2", path = "../runtime" }
node-primitives = { version = "0.6.3", path = "../primitives" }
node-testing = { version = "0.6.3", path = "../testing" }
node-runtime = { version = "0.6.3", path = "../runtime" }
sc-cli = { branch = "master", git = 'https://github.com/stafiprotocol/stafi-blockchain.git' }
sc-client-api = { branch = "master", git = 'https://github.com/stafiprotocol/stafi-blockchain.git' }
sp-runtime = { branch = "master", git = 'https://github.com/stafiprotocol/stafi-blockchain.git' }
Expand Down
16 changes: 8 additions & 8 deletions node/cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "node-cli"
version = "0.6.2"
version = "0.6.3"
authors = ["Stafi Technologies <[email protected]>"]
description = "Generic Stafi node implementation in Rust."
build = "build.rs"
Expand Down Expand Up @@ -87,19 +87,19 @@ pallet-staking = { branch = "master", git = 'https://github.com/stafiprotocol/st
pallet-grandpa = { branch = "master", git = 'https://github.com/stafiprotocol/stafi-blockchain.git' }

# node-specific dependencies
node-runtime = { version = "0.6.2", path = "../runtime" }
node-rpc = { version = "0.6.2", path = "../rpc" }
node-primitives = { version = "0.6.2", path = "../primitives" }
node-executor = { version = "0.6.2", path = "../executor" }
node-runtime = { version = "0.6.3", path = "../runtime" }
node-rpc = { version = "0.6.3", path = "../rpc" }
node-primitives = { version = "0.6.3", path = "../primitives" }
node-executor = { version = "0.6.3", path = "../executor" }

# CLI-specific dependencies
sc-cli = { branch = "master", optional = true, git = 'https://github.com/stafiprotocol/stafi-blockchain.git' }
frame-benchmarking-cli = { branch = "master", optional = true, git = 'https://github.com/stafiprotocol/stafi-blockchain.git' }
node-inspect = { version = "0.6.2", optional = true, path = "../inspect" }
node-inspect = { version = "0.6.3", optional = true, path = "../inspect" }


[target.'cfg(target_arch="x86_64")'.dependencies]
node-executor = { version = "0.6.2", path = "../executor", features = [ "wasmtime" ] }
node-executor = { version = "0.6.3", path = "../executor", features = [ "wasmtime" ] }
sc-cli = { branch = "master", optional = true, git = 'https://github.com/stafiprotocol/stafi-blockchain.git', features = [ "wasmtime" ] }
sc-service = { branch = "master", default-features = false, git = 'https://github.com/stafiprotocol/stafi-blockchain.git', features = [ "wasmtime" ] }
sp-trie = { branch = "master", default-features = false, git = 'https://github.com/stafiprotocol/stafi-blockchain.git', features = ["memory-tracker"] }
Expand All @@ -120,7 +120,7 @@ platforms = "1.1"

[build-dependencies]
structopt = { version = "0.3.8", optional = true }
node-inspect = { version = "0.6.2", optional = true, path = "../inspect" }
node-inspect = { version = "0.6.3", optional = true, path = "../inspect" }
frame-benchmarking-cli = { branch = "master", optional = true, git = 'https://github.com/stafiprotocol/stafi-blockchain.git' }
substrate-build-script-utils = { branch = "master", optional = true, git = 'https://github.com/stafiprotocol/stafi-blockchain.git' }
substrate-frame-cli = { branch = "master", optional = true, git = 'https://github.com/stafiprotocol/stafi-blockchain.git' }
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 = "node-executor"
version = "0.6.2"
version = "0.6.3"
authors = ["Stafi Technologies <[email protected]>"]
description = "Stafi node implementation in Rust."
edition = "2018"
Expand All @@ -10,8 +10,8 @@ targets = ["x86_64-unknown-linux-gnu"]

[dependencies]
codec = { package = "parity-scale-codec", version = "1.3.4" }
node-primitives = { version = "0.6.2", path = "../primitives" }
node-runtime = { version = "0.6.2", path = "../runtime" }
node-primitives = { version = "0.6.3", path = "../primitives" }
node-runtime = { version = "0.6.3", path = "../runtime" }
sc-executor = { branch = "master", git = 'https://github.com/stafiprotocol/stafi-blockchain.git' }
sp-core = { branch = "master", git = 'https://github.com/stafiprotocol/stafi-blockchain.git' }
sp-io = { branch = "master", git = 'https://github.com/stafiprotocol/stafi-blockchain.git' }
Expand All @@ -24,7 +24,7 @@ frame-benchmarking = { branch = "master", git = 'https://github.com/stafiprotoco
criterion = "0.3.0"
frame-support = { branch = "master", git = 'https://github.com/stafiprotocol/stafi-blockchain.git' }
frame-system = { branch = "master", git = 'https://github.com/stafiprotocol/stafi-blockchain.git' }
node-testing = { version = "0.6.2", path = "../testing" }
node-testing = { version = "0.6.3", path = "../testing" }
pallet-balances = { branch = "master", git = 'https://github.com/stafiprotocol/stafi-blockchain.git' }
pallet-grandpa = { branch = "master", git = 'https://github.com/stafiprotocol/stafi-blockchain.git' }
pallet-im-online = { branch = "master", git = 'https://github.com/stafiprotocol/stafi-blockchain.git' }
Expand Down
2 changes: 1 addition & 1 deletion node/inspect/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "node-inspect"
version = "0.6.2"
version = "0.6.3"
authors = ["Stafi Technologies <[email protected]>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion node/pallets/bridge/common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bridge-common"
version = "0.6.2"
version = "0.6.3"
authors = ["Stafi Technologies <[email protected]>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion node/pallets/bridge/relayers/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bridge-relayers"
version = "0.6.2"
version = "0.6.3"
authors = ["Stafi Technologies <[email protected]>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion node/pallets/bridge/swap/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bridge-swap"
version = "0.6.2"
version = "0.6.3"
authors = ["Stafi Technologies <[email protected]>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion node/pallets/claims/rclaim/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rclaim"
version = "0.6.2"
version = "0.6.3"
authors = ["Stafi Technologies <[email protected]>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion node/pallets/claims/xclaim/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "xclaim"
version = "0.6.2"
version = "0.6.3"
authors = ["Stafi Technologies <[email protected]>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion node/pallets/general/signature/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "general-signature"
version = "0.6.2"
version = "0.6.3"
authors = ["Stafi Technologies <[email protected]>"]
edition = "2018"

Expand Down
Loading

0 comments on commit c18884d

Please sign in to comment.