Skip to content

Commit

Permalink
release related updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Polkaverse committed Aug 30, 2023
1 parent 55ca943 commit b2db51a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions node/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "jur-node"
version = "2.0.3"
version = "2.1.0"
edition = "2021"
license = "Unlicense"
publish = false
Expand Down Expand Up @@ -55,7 +55,7 @@ frame-benchmarking = { version = "4.0.0-dev", git = "https://github.com/parityte
frame-benchmarking-cli = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v1.0.0" }

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

# CLI-specific dependencies
Expand Down
2 changes: 1 addition & 1 deletion runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "jur-node-runtime"
version = "2.0.3"
version = "2.1.0"
edition = "2021"
license = "Unlicense"
publish = false
Expand Down
6 changes: 3 additions & 3 deletions runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,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: 116,
spec_version: 107,
impl_version: 1,
apis: RUNTIME_API_VERSIONS,
transaction_version: 1,
Expand Down Expand Up @@ -338,7 +338,7 @@ impl pallet_sudo::Config for Runtime {
parameter_types! {
pub Prefix: &'static [u8] = b"My JUR address is ";
pub const NativeCurrencyId: CurrencyId = NATIVE_CURRENCY_ID;
pub const EthAddress: EthereumAddress = EthereumAddress(hex!("37abc97DD3dA0b81fe635e35Ea1655A15FfF4d76"));
pub const EthAddress: EthereumAddress = EthereumAddress(hex!("D77229999a1ca62b5bfb2735BaC12069b3794c44"));
}

/// Configure the pallet-token-swap in pallets/token-swap.
Expand Down Expand Up @@ -600,7 +600,7 @@ pub type Executive = frame_executive::Executive<
Migrations,
>;

pub type Migrations = pallet_community::migration::v6::MigrateToV6<Runtime>;
pub type Migrations = pallet_community::migration::v7::MigrateToV7<Runtime>;

#[cfg(feature = "runtime-benchmarks")]
#[macro_use]
Expand Down

0 comments on commit b2db51a

Please sign in to comment.