Skip to content

Commit

Permalink
bump spec version, crate minor versions and fix benchmakr build
Browse files Browse the repository at this point in the history
  • Loading branch information
brenzi committed Nov 2, 2023
1 parent cfd5839 commit 40b72f7
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion polkadot-parachains/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "encointer-collator"
# align major.minor revision with the runtimes. bump patch revision ad lib. make this the github release tag
version = "1.5.1"
version = "1.6.0"
authors = ["Encointer <info@encointer.org>"]
build = "build.rs"
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion polkadot-parachains/encointer-runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = 'encointer-runtime'
# major.minor revision must match collator node
# patch revision must match runtime spec_version
version = '1.5.16'
version = '1.6.17'
authors = ["Encointer <info@encointer.org>"]
license = "GPL-3.0"
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion polkadot-parachains/encointer-runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("encointer-parachain"),
impl_name: create_runtime_str!("encointer-parachain"),
authoring_version: 1,
spec_version: 16,
spec_version: 17,
impl_version: 1,
apis: RUNTIME_API_VERSIONS,
transaction_version: 3,
Expand Down
2 changes: 1 addition & 1 deletion polkadot-parachains/launch-runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = 'launch-runtime'
# major.minor revision must match collator node. patch should match the runtimes' `spec_version`.
version = '1.4.3'
version = '1.6.3'
authors = ["Encointer <info@encointer.org>"]
license = "GPL-3.0"
edition = "2021"
Expand Down
4 changes: 2 additions & 2 deletions polkadot-parachains/launch-runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -618,8 +618,8 @@ impl_runtime_apis! {
fn dispatch_benchmark(
config: frame_benchmarking::BenchmarkConfig
) -> Result<Vec<frame_benchmarking::BenchmarkBatch>, sp_runtime::RuntimeString> {
use frame_benchmarking::{Benchmarking, BenchmarkBatch, TrackedStorageKey};

use frame_benchmarking::{Benchmarking, BenchmarkBatch};
use frame_support::traits::TrackedStorageKey;
use frame_system_benchmarking::Pallet as SystemBench;
impl frame_system_benchmarking::Config for Runtime {}

Expand Down

0 comments on commit 40b72f7

Please sign in to comment.