Skip to content

Commit b2db51a

Browse files
committed
release related updates
1 parent 55ca943 commit b2db51a

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "jur-node"
3-
version = "2.0.3"
3+
version = "2.1.0"
44
edition = "2021"
55
license = "Unlicense"
66
publish = false
@@ -55,7 +55,7 @@ frame-benchmarking = { version = "4.0.0-dev", git = "https://github.com/parityte
5555
frame-benchmarking-cli = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v1.0.0" }
5656

5757
# Local Dependencies
58-
jur-node-runtime = { version = "2.0.3", path = "../runtime" }
58+
jur-node-runtime = { version = "2.1.0", path = "../runtime" }
5959
primitives = { package = 'jur-primitives', path = '../primitives' }
6060

6161
# CLI-specific dependencies

runtime/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "jur-node-runtime"
3-
version = "2.0.3"
3+
version = "2.1.0"
44
edition = "2021"
55
license = "Unlicense"
66
publish = false

runtime/src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
120120
// `spec_version`, and `authoring_version` are the same between Wasm and native.
121121
// This value is set to 100 to notify Polkadot-JS App (https://polkadot.js.org/apps) to use
122122
// the compatible custom types.
123-
spec_version: 116,
123+
spec_version: 107,
124124
impl_version: 1,
125125
apis: RUNTIME_API_VERSIONS,
126126
transaction_version: 1,
@@ -338,7 +338,7 @@ impl pallet_sudo::Config for Runtime {
338338
parameter_types! {
339339
pub Prefix: &'static [u8] = b"My JUR address is ";
340340
pub const NativeCurrencyId: CurrencyId = NATIVE_CURRENCY_ID;
341-
pub const EthAddress: EthereumAddress = EthereumAddress(hex!("37abc97DD3dA0b81fe635e35Ea1655A15FfF4d76"));
341+
pub const EthAddress: EthereumAddress = EthereumAddress(hex!("D77229999a1ca62b5bfb2735BaC12069b3794c44"));
342342
}
343343

344344
/// Configure the pallet-token-swap in pallets/token-swap.
@@ -600,7 +600,7 @@ pub type Executive = frame_executive::Executive<
600600
Migrations,
601601
>;
602602

603-
pub type Migrations = pallet_community::migration::v6::MigrateToV6<Runtime>;
603+
pub type Migrations = pallet_community::migration::v7::MigrateToV7<Runtime>;
604604

605605
#[cfg(feature = "runtime-benchmarks")]
606606
#[macro_use]

0 commit comments

Comments
 (0)