Skip to content

Commit

Permalink
Bump versions for testnet release
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanwhit committed Mar 16, 2022
1 parent 7a0e646 commit cd6e399
Show file tree
Hide file tree
Showing 10 changed files with 25 additions and 25 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.2'
version = '2.0.0-beta.3'
description = 'A Creditcoin node built on substrate.'
authors = ['Substrate DevHub <https://github.com/substrate-developer-hub>']
homepage = 'https://substrate.dev'
Expand All @@ -23,7 +23,7 @@ version = '3.0.0'

[dependencies.creditcoin-node-runtime]
path = '../runtime'
version = '2.0.0-beta.2'
version = '2.0.0-beta.3'

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

[dependencies.frame-benchmarking]
git = 'https://github.com/paritytech/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.2"
version = "2.0.0-beta.3"
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/paritytech/substrate.git', rev = '94d
frame-support = { git = 'https://github.com/paritytech/substrate.git', rev = '94dfe152e61e42cd27844a65165cfdedde5232eb', version = '4.0.0-dev' }
pallet-balances = { git = 'https://github.com/paritytech/substrate.git', rev = '94dfe152e61e42cd27844a65165cfdedde5232eb', version = '4.0.0-dev' }
pallet-timestamp = { git = 'https://github.com/paritytech/substrate.git', rev = '94dfe152e61e42cd27844a65165cfdedde5232eb', version = '4.0.0-dev' }
creditcoin-node-runtime = { version = "2.0.0-beta.2", path = "../../runtime" }
creditcoin-node-runtime = { version = "2.0.0-beta.3", 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.2"
version = "2.0.0-beta.3"
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.2'
version = '2.0.0-beta.3'
description = 'FRAME pallet for dynamic difficulty adjustment.'
authors = ['Nathan Whitaker <nathan.whitaker01@gmail.com>']
homepage = 'https://substrate.dev'
Expand All @@ -16,7 +16,7 @@ targets = ['x86_64-unknown-linux-gnu']
log = "0.4.14"

[dependencies.primitives]
version = "2.0.0-beta.2"
version = "2.0.0-beta.3"
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.2'
version = '2.0.0-beta.3'
description = 'FRAME pallet for rewarding block authors.'
authors = ['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.2"
version = "2.0.0-beta.3"
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.2'
version = '2.0.0-beta.3'
description = 'Creditcoin runtime built on substrate.'
authors = ['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.2"
version = "2.0.0-beta.3"

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

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

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

[build-dependencies.substrate-wasm-builder]
git = 'https://github.com/paritytech/substrate.git'
Expand Down
2 changes: 1 addition & 1 deletion runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
// `spec_version`, and `authoring_version` are the same between Wasm and native.
// This value is set to 100 to notify Polkadot-JS App (https://polkadot.js.org/apps) to use
// the compatible custom types.
spec_version: 100,
spec_version: 101,
impl_version: 1,
apis: RUNTIME_API_VERSIONS,
transaction_version: 1,
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.2"
version = "2.0.0-beta.3"
edition = "2021"

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

0 comments on commit cd6e399

Please sign in to comment.