Skip to content

Commit d172b09

Browse files
authored
update minor version due to bootnodes addition (#177)
1 parent a4d99da commit d172b09

File tree

6 files changed

+11
-10
lines changed

6 files changed

+11
-10
lines changed

Cargo.lock

Lines changed: 4 additions & 4 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
@@ -3,7 +3,7 @@ authors = ['MXC Foundation gGmbH <https://t.me/mxcfoundation>', 'Luke Schoen <lu
33
build = 'build.rs'
44
edition = '2018'
55
name = 'datahighway'
6-
version = '3.0.0'
6+
version = '3.0.1'
77

88
[[bin]]
99
name = 'datahighway'
@@ -22,7 +22,7 @@ structopt = '0.3.8'
2222
hex-literal = '0.3.1'
2323

2424
# local node-specific dependencies
25-
datahighway-runtime = { version = '3.0.0', path = '../runtime' }
25+
datahighway-runtime = { version = '3.0.1', path = '../runtime' }
2626

2727
# Substrate dependencies
2828
frame-benchmarking = '3.1.0'

pallets/mining/eligibility/proxy/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mining-eligibility-proxy"
3-
version = "0.1.0"
3+
version = "3.0.1"
44
authors = ["Luke Schoen"]
55
edition = "2018"
66

@@ -31,7 +31,7 @@ std = [
3131
codec = { version = '2.0.0', package = 'parity-scale-codec', default-features = false, features = ['derive'] }
3232
frame-support = { version = '3.0.0', default-features = false }
3333
frame-system = { version = '3.0.0', default-features = false }
34-
module-primitives = { version = '3.0.0', default-features = false, path = '../../../primitives' }
34+
module-primitives = { version = '3.0.1', default-features = false, path = '../../../primitives' }
3535
safe-mix = { version = '1.0.0', default-features = false }
3636
pallet-balances = { version = '3.0.0', default-features = false }
3737
pallet-randomness-collective-flip = { version = '3.0.0', default-features = false }

pallets/primitives/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = 'module-primitives'
3-
version = '3.0.0'
3+
version = '3.0.1'
44
authors = ['Laminar Developers <hello@laminar.one>', 'MXC Foundation GmbH <https://t.me/mxcfoundation>', 'Luke Schoen']
55
edition = '2018'
66

runtime/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
authors = ['MXC Foundation gGmbH <https://t.me/mxcfoundation>', 'Luke Schoen <luke@mxc.org>', 'Ilya Beregovskiy <ilya@mxc.org>']
33
edition = '2018'
44
name = 'datahighway-runtime'
5-
version = '3.0.0'
5+
version = '3.0.1'
66

77
[package.metadata.docs.rs]
88
targets = ['x86_64-unknown-linux-gnu']

runtime/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -192,6 +192,7 @@ pub fn wasm_binary_unwrap() -> &'static [u8] {
192192
)
193193
}
194194

195+
/// Runtime version. See https://github.com/paritytech/substrate/blob/master/primitives/version/src/lib.rs#L50
195196
pub const VERSION: RuntimeVersion = RuntimeVersion {
196197
spec_name: create_runtime_str!("datahighway"),
197198
impl_name: create_runtime_str!("datahighway"),

0 commit comments

Comments
 (0)