Skip to content

Commit

Permalink
Merge pull request #767 from gluwa/CSUB-317-new-testnet-release
Browse files Browse the repository at this point in the history
CSUB-317: Update testnet to 2.211.2
  • Loading branch information
nathanwhit committed Nov 10, 2022
2 parents 815ea28 + 56c212c commit 54e9f6c
Show file tree
Hide file tree
Showing 12 changed files with 28 additions and 28 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,6 @@ jobs:
- name: Make the release
uses: softprops/action-gh-release@v1
with:
files: 'artifact/creditcoin-${{ env.TAG_NAME }}-*'
files: 'artifact/creditcoin-*${{ env.TAG_NAME }}*'
fail_on_unmatched_files: true
name: ${{ env.TAG_NAME }}
18 changes: 9 additions & 9 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/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = 'creditcoin-node'
version = '2.211.1'
version = '2.211.2'
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 @@ rev = "973dd744f5f7c6322799bbfa29366588e0267b0a"

[dependencies.creditcoin-node-runtime]
path = '../runtime'
version = '2.211.1'
version = '2.211.2'

[dependencies]
jsonrpc-core = '18.0.0'
Expand All @@ -35,8 +35,8 @@ log = "0.4.17"
codec = { package = "parity-scale-codec", version = "2.3.1" }
tiny-bip39 = "1.0.0"
hex = "0.4.3"
creditcoin-node-rpc = { version = "2.211.1", path = "./rpc" }
creditcoin-runtime-api = { version = "2.211.1", path = "../pallets/creditcoin/runtime-api" }
creditcoin-node-rpc = { version = "2.211.2", path = "./rpc" }
creditcoin-runtime-api = { version = "2.211.2", path = "../pallets/creditcoin/runtime-api" }
primitives = { path = "../primitives" }
thiserror = "1.0.37"

Expand Down
2 changes: 1 addition & 1 deletion 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.211.1"
version = "2.211.2"
edition = "2018"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
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.211.1"
version = "2.211.2"
edition = "2018"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 1 addition & 1 deletion pallets/creditcoin/runtime-api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "creditcoin-runtime-api"
version = "2.211.1"
version = "2.211.2"
edition = "2021"

# 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.211.1'
version = '2.211.2'
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.17"

[dependencies.primitives]
default-features = false
version = "2.211.1"
version = "2.211.2"
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.211.1'
version = '2.211.2'
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.211.1"
version = "2.211.2"
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.211.1'
version = '2.211.2'
description = 'Creditcoin runtime built on substrate.'
authors = ['Gluwa Inc.', 'Nathan Whitaker <nathan.whitaker@gluwa.com>']
edition = '2018'
Expand All @@ -18,22 +18,22 @@ creditcoin-runtime-api = { path = "../pallets/creditcoin/runtime-api", default-f
[dependencies.primitives]
default-features = false
path = "../primitives"
version = "2.211.1"
version = "2.211.2"

[dependencies.pallet-rewards]
default-features = false
path = '../pallets/rewards'
version = '2.211.1'
version = '2.211.2'

[dependencies.pallet-difficulty]
default-features = false
path = '../pallets/difficulty'
version = '2.211.1'
version = '2.211.2'

[dependencies.pallet-creditcoin]
default-features = false
path = '../pallets/creditcoin'
version = '2.211.1'
version = '2.211.2'

[build-dependencies.substrate-wasm-builder]
git = "https://github.com/gluwa/substrate.git"
Expand Down
2 changes: 1 addition & 1 deletion runtime/src/version.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
// This value is set to 100 to notify Polkadot-JS App (https://polkadot.js.org/apps) to use
// the compatible custom types.
spec_version: 211,
impl_version: 1,
impl_version: 2,
apis: RUNTIME_API_VERSIONS,
transaction_version: 10,
state_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.211.1"
version = "2.211.2"
edition = "2021"

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

0 comments on commit 54e9f6c

Please sign in to comment.