Skip to content

Commit

Permalink
Release v0.4.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Tore19 committed Sep 18, 2021
1 parent ca74900 commit 619b5df
Show file tree
Hide file tree
Showing 30 changed files with 89 additions and 89 deletions.
50 changes: 25 additions & 25 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Welcome to participate in us. Download the source:
```bash
git clone https://github.com/stafiprotocol/stafi-node.git
cd stafi-node
git checkout v0.4.7
git checkout v0.4.8
```

Install system dependencies(recommend ubuntu or macos):
Expand Down
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.4.7"
version = "0.4.8"
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.4.7", path = "../primitives" }
node-testing = { version = "0.4.7", path = "../testing" }
node-runtime = { version = "0.4.7", path = "../runtime" }
node-primitives = { version = "0.4.8", path = "../primitives" }
node-testing = { version = "0.4.8", path = "../testing" }
node-runtime = { version = "0.4.8", 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.4.7"
version = "0.4.8"
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.4.7", path = "../runtime" }
node-rpc = { version = "0.4.7", path = "../rpc" }
node-primitives = { version = "0.4.7", path = "../primitives" }
node-executor = { version = "0.4.7", path = "../executor" }
node-runtime = { version = "0.4.8", path = "../runtime" }
node-rpc = { version = "0.4.8", path = "../rpc" }
node-primitives = { version = "0.4.8", path = "../primitives" }
node-executor = { version = "0.4.8", 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.4.7", optional = true, path = "../inspect" }
node-inspect = { version = "0.4.8", optional = true, path = "../inspect" }


[target.'cfg(target_arch="x86_64")'.dependencies]
node-executor = { version = "0.4.7", path = "../executor", features = [ "wasmtime" ] }
node-executor = { version = "0.4.8", 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 = "0.2.1"

[build-dependencies]
structopt = { version = "0.3.8", optional = true }
node-inspect = { version = "0.4.7", optional = true, path = "../inspect" }
node-inspect = { version = "0.4.8", 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.4.7"
version = "0.4.8"
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.4.7", path = "../primitives" }
node-runtime = { version = "0.4.7", path = "../runtime" }
node-primitives = { version = "0.4.8", path = "../primitives" }
node-runtime = { version = "0.4.8", 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.4.7", path = "../testing" }
node-testing = { version = "0.4.8", 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.4.7"
version = "0.4.8"
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.4.7"
version = "0.4.8"
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.4.7"
version = "0.4.8"
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.4.7"
version = "0.4.8"
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.4.7"
version = "0.4.8"
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.4.7"
version = "0.4.8"
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.4.7"
version = "0.4.8"
authors = ["Stafi Technologies <[email protected]>"]
edition = "2018"

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

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

Expand Down
Loading

0 comments on commit 619b5df

Please sign in to comment.