Skip to content

Commit

Permalink
meta: bump crate versions
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanwhit committed Mar 22, 2022
1 parent fe10419 commit 759929a
Show file tree
Hide file tree
Showing 9 changed files with 24 additions and 24 deletions.
16 changes: 8 additions & 8 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.3'
version = '2.0.0-beta.4'
description = 'A Creditcoin node built on substrate.'
authors = ['Gluwa Inc.', 'Nathan Whitaker <nathan.whitaker01@gmail.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.3'
version = '2.0.0-beta.4'

[dependencies]
jsonrpc-core = '18.0.0'
Expand All @@ -35,7 +35,7 @@ log = "0.4.15"
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.3", path = "./rpc" }
creditcoin-node-rpc = { version = "2.0.0-beta.4", path = "./rpc" }

[dependencies.frame-benchmarking]
git = 'https://github.com/gluwa/substrate.git'
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.3"
version = "2.0.0-beta.4"
edition = "2018"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down Expand Up @@ -30,6 +30,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.3", path = "../../runtime" }
creditcoin-node-runtime = { version = "2.0.0-beta.4", 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.3"
version = "2.0.0-beta.4"
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.3'
version = '2.0.0-beta.4'
description = 'FRAME pallet for dynamic difficulty adjustment.'
authors = ['Gluwa Inc.', 'Nathan Whitaker <nathan.whitaker01@gmail.com>']
edition = '2018'
Expand All @@ -15,7 +15,7 @@ targets = ['x86_64-unknown-linux-gnu']
log = "0.4.15"

[dependencies.primitives]
version = "2.0.0-beta.3"
version = "2.0.0-beta.4"
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.3'
version = '2.0.0-beta.4'
description = 'FRAME pallet for rewarding block authors.'
authors = ['Gluwa Inc.', 'Nathan Whitaker <nathan.whitaker01@gmail.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.3"
version = "2.0.0-beta.4"
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.3'
version = '2.0.0-beta.4'
description = 'Creditcoin runtime built on substrate.'
authors = ['Gluwa Inc.', 'Nathan Whitaker <nathan.whitaker01@gmail.com>']
edition = '2018'
Expand All @@ -16,22 +16,22 @@ smallvec = "1.8.0"

[dependencies.primitives]
path = "../primitives"
version = "2.0.0-beta.3"
version = "2.0.0-beta.4"

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

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

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

[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.3"
version = "2.0.0-beta.4"
edition = "2021"

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

0 comments on commit 759929a

Please sign in to comment.