Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

upgraded spec version and cargo file #204

Merged
merged 8 commits into from
Jun 15, 2021
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,16 @@ on:
push:
branches:
- master
- develop
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Publish to Registry
pre: echo ::save-state name=RELEASE_VERSION::$(echo ${GITHUB_REF:10})
uses: elgohr/Publish-Docker-Github-Action@master
with:
name: dhxdocker/datahighway
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
tags: "latest,${{ env.STATE_RELEASE_VERSION }}"
6 changes: 3 additions & 3 deletions node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ authors = ['MXC Foundation gGmbH <https://t.me/mxcfoundation>', 'Luke Schoen <lu
build = 'build.rs'
edition = '2018'
name = 'datahighway'
version = '3.0.4'
version = '3.0.5'

[[bin]]
name = 'datahighway'
Expand All @@ -22,12 +22,12 @@ structopt = '0.3.8'
hex-literal = '0.3.1'

# local node-specific dependencies
datahighway-runtime = { version = '3.0.4', path = '../runtime' }
datahighway-runtime = { version = '3.0.5', path = '../runtime' }

# Substrate dependencies
frame-benchmarking = '3.1.0'
frame-benchmarking-cli = '3.0.0'
module-primitives = { version = '3.0.4', default-features = false, path = '../pallets/primitives' }
module-primitives = { version = '3.0.5', default-features = false, path = '../pallets/primitives' }
pallet-authority-discovery = '3.0.0'
pallet-democracy = '3.0.0'
pallet-im-online = '3.0.0'
Expand Down
279 changes: 279 additions & 0 deletions node/src/chain-built/chain_def_brickable.json

Large diffs are not rendered by default.

246 changes: 124 additions & 122 deletions node/src/chain-built/chain_def_dev.json

Large diffs are not rendered by default.

419 changes: 419 additions & 0 deletions node/src/chain-built/chain_def_harbour.json

Large diffs are not rendered by default.

382 changes: 192 additions & 190 deletions node/src/chain-built/chain_def_local.json

Large diffs are not rendered by default.

611 changes: 381 additions & 230 deletions node/src/chain-built/chain_def_westlake.json

Large diffs are not rendered by default.

495 changes: 495 additions & 0 deletions node/src/chain-built/chain_spec_brickable.json

Large diffs are not rendered by default.

30 changes: 15 additions & 15 deletions node/src/chain-built/chain_spec_dev.json

Large diffs are not rendered by default.

880 changes: 880 additions & 0 deletions node/src/chain-built/chain_spec_harbour.json

Large diffs are not rendered by default.

52 changes: 26 additions & 26 deletions node/src/chain-built/chain_spec_local.json

Large diffs are not rendered by default.

162 changes: 81 additions & 81 deletions node/src/chain-built/chain_spec_westlake.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions pallets/mining/eligibility/proxy/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mining-eligibility-proxy"
version = "3.0.4"
version = "3.0.5"
authors = ["Luke Schoen"]
edition = "2018"

Expand Down Expand Up @@ -31,7 +31,7 @@ std = [
codec = { version = '2.0.0', package = 'parity-scale-codec', default-features = false, features = ['derive'] }
frame-support = { version = '3.0.0', default-features = false }
frame-system = { version = '3.0.0', default-features = false }
module-primitives = { version = '3.0.4', default-features = false, path = '../../../primitives' }
module-primitives = { version = '3.0.5', default-features = false, path = '../../../primitives' }
safe-mix = { version = '1.0.0', default-features = false }
pallet-balances = { version = '3.0.0', default-features = false }
pallet-randomness-collective-flip = { version = '3.0.0', default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion pallets/primitives/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = 'module-primitives'
version = '3.0.4'
version = '3.0.5'
authors = ['Laminar Developers <[email protected]>', 'MXC Foundation GmbH <https://t.me/mxcfoundation>', 'Luke Schoen']
edition = '2018'

Expand Down
2 changes: 1 addition & 1 deletion runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
authors = ['MXC Foundation gGmbH <https://t.me/mxcfoundation>', 'Luke Schoen <[email protected]>', 'Ilya Beregovskiy <[email protected]>']
edition = '2018'
name = 'datahighway-runtime'
version = '3.0.4'
version = '3.0.5'

[package.metadata.docs.rs]
targets = ['x86_64-unknown-linux-gnu']
Expand Down
2 changes: 1 addition & 1 deletion runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("datahighway"),
impl_name: create_runtime_str!("datahighway"),
authoring_version: 2,
spec_version: 7,
spec_version: 8,
impl_version: 2,
apis: RUNTIME_API_VERSIONS,
transaction_version: 2,
Expand Down