Skip to content

Commit

Permalink
Bump versions to beta 6
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanwhit committed Apr 19, 2022
1 parent 1407514 commit 5fb837a
Show file tree
Hide file tree
Showing 9 changed files with 56 additions and 58 deletions.
82 changes: 40 additions & 42 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions node/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = 'creditcoin-node'
version = '2.0.0-beta.5'
version = '2.0.0-beta.6'
description = 'A Creditcoin node built on substrate.'
authors = ['Gluwa Inc.', 'Nathan Whitaker <nathan.whitaker@gluwa.com>']
homepage = 'https://creditcoin.org'
Expand All @@ -23,7 +23,7 @@ version = '3.0.0'

[dependencies.creditcoin-node-runtime]
path = '../runtime'
version = '2.0.0-beta.5'
version = '2.0.0-beta.6'

[dependencies]
jsonrpc-core = '18.0.0'
Expand All @@ -35,7 +35,7 @@ log = "0.4.16"
codec = { package = "parity-scale-codec", version = "2.3.1" }
tiny-bip39 = "0.8.2"
hex = "0.4.3"
creditcoin-node-rpc = { version = "2.0.0-beta.5", path = "./rpc" }
creditcoin-node-rpc = { version = "2.0.0-beta.6", path = "./rpc" }
primitives = { path = "../primitives" }


Expand Down
4 changes: 2 additions & 2 deletions node/rpc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "creditcoin-node-rpc"
version = "2.0.0-beta.5"
version = "2.0.0-beta.6"
edition = "2018"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down Expand Up @@ -31,6 +31,6 @@ frame-system = { git = 'https://github.com/gluwa/substrate.git', rev = '57cab2f3
frame-support = { git = 'https://github.com/gluwa/substrate.git', rev = '57cab2f30bcc5343771c8bc763dd6c9c9e10f0a8', version = '4.0.0-dev' }
pallet-balances = { git = 'https://github.com/gluwa/substrate.git', rev = '57cab2f30bcc5343771c8bc763dd6c9c9e10f0a8', version = '4.0.0-dev' }
pallet-timestamp = { git = 'https://github.com/gluwa/substrate.git', rev = '57cab2f30bcc5343771c8bc763dd6c9c9e10f0a8', version = '4.0.0-dev' }
creditcoin-node-runtime = { version = "2.0.0-beta.5", path = "../../runtime" }
creditcoin-node-runtime = { version = "2.0.0-beta.6", path = "../../runtime" }
jsonrpc-pubsub = "18.0.0"
futures = "0.3.21"
2 changes: 1 addition & 1 deletion pallets/creditcoin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pallet-creditcoin"
version = "2.0.0-beta.5"
version = "2.0.0-beta.6"
edition = "2018"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
4 changes: 2 additions & 2 deletions pallets/difficulty/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = 'pallet-difficulty'
version = '2.0.0-beta.5'
version = '2.0.0-beta.6'
description = 'FRAME pallet for dynamic difficulty adjustment.'
authors = ['Gluwa Inc.', 'Nathan Whitaker <nathan.whitaker@gluwa.com>']
edition = '2018'
Expand All @@ -16,7 +16,7 @@ log = "0.4.16"

[dependencies.primitives]
default-features = false
version = "2.0.0-beta.5"
version = "2.0.0-beta.6"
path = "../../primitives"

[dependencies.sp-arithmetic]
Expand Down
2 changes: 1 addition & 1 deletion pallets/rewards/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = 'pallet-rewards'
version = '2.0.0-beta.5'
version = '2.0.0-beta.6'
description = 'FRAME pallet for rewarding block authors.'
authors = ['Gluwa Inc.', 'Nathan Whitaker <nathan.whitaker@gluwa.com>']
edition = '2018'
Expand Down
2 changes: 1 addition & 1 deletion primitives/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "primitives"
version = "2.0.0-beta.5"
version = "2.0.0-beta.6"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
10 changes: 5 additions & 5 deletions runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = 'creditcoin-node-runtime'
version = '2.0.0-beta.5'
version = '2.0.0-beta.6'
description = 'Creditcoin runtime built on substrate.'
authors = ['Gluwa Inc.', 'Nathan Whitaker <nathan.whitaker@gluwa.com>']
edition = '2018'
Expand All @@ -17,22 +17,22 @@ smallvec = "1.8.0"
[dependencies.primitives]
default-features = false
path = "../primitives"
version = "2.0.0-beta.5"
version = "2.0.0-beta.6"

[dependencies.pallet-rewards]
default-features = false
path = '../pallets/rewards'
version = '2.0.0-beta.5'
version = '2.0.0-beta.6'

[dependencies.pallet-difficulty]
default-features = false
path = '../pallets/difficulty'
version = '2.0.0-beta.5'
version = '2.0.0-beta.6'

[dependencies.pallet-creditcoin]
default-features = false
path = '../pallets/creditcoin'
version = '2.0.0-beta.5'
version = '2.0.0-beta.6'

[build-dependencies.substrate-wasm-builder]
git = 'https://github.com/gluwa/substrate.git'
Expand Down
2 changes: 1 addition & 1 deletion sha3pow/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sha3pow"
version = "2.0.0-beta.5"
version = "2.0.0-beta.6"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down

0 comments on commit 5fb837a

Please sign in to comment.