Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
0fe5adb
Only use dummy subsystems in overseer (#1884)
bkchr Oct 29, 2020
1b20c85
[CI] Switch to using paritytech/srtool (#1887)
s3krit Oct 29, 2020
06d9ab2
New Weights v0.8.26 (#1889)
shawntabrizi Nov 3, 2020
d6d79dd
Update Proxy Filters (#1890)
shawntabrizi Nov 3, 2020
8fb9126
remove stale migrations (#1914)
s3krit Nov 3, 2020
116df38
add missing Cargo.lock changes
andresilva Nov 4, 2020
e10b7fd
Cargo.lock: Update dependencies (#1929)
mxinden Nov 8, 2020
803da90
bump version to v0.8.26-1
s3krit Nov 8, 2020
9b9f0b3
Backport substrate#7733 and switch to that branch (#2193)
s3krit Jan 5, 2021
6f79c25
added new bootnode to chain spec's (#2204)
fevo1971 Jan 6, 2021
c264929
4 additional bootnodes added (#2213)
fevo1971 Jan 7, 2021
ddaadd8
Revert v0.8.26 (and v0.8.26-1) hotfixes
s3krit Jan 11, 2021
2f84569
Merge branch 'release-v0.8.27' into release
s3krit Jan 11, 2021
3d7b8ee
Bump tx version for westend and test-runtime, bump substrate (#2337)
s3krit Jan 27, 2021
0acc93e
Use Extensible Multiaddress in all Polkadot Runtimes (#2126)
shawntabrizi Jan 27, 2021
7d43bf6
v0.8.28-rc3 (#2350)
s3krit Feb 1, 2021
d32ba6b
Backports for v0.8.28-rc4 (#2386)
s3krit Feb 4, 2021
530b774
Revert v0.8.27 hotfixes
s3krit Feb 5, 2021
371681c
Merge branch 'release-v0.8.28' into release
s3krit Feb 5, 2021
99043f7
[release-branch bugfix] Bump substrate (#2399)
s3krit Feb 9, 2021
7906f70
switch to substrate/polkadot-v0.8.29 (#2534)
s3krit Feb 26, 2021
2494dec
Initialize telemetry earlier (#2549)
bkchr Mar 2, 2021
24d2cc2
Revert "[release-branch bugfix] Bump substrate (#2399)"
s3krit Mar 3, 2021
72ce1c8
Merge branch 'release-v0.8.29' into release
s3krit Mar 3, 2021
6d781dd
Bump substrate to polkadot-v0.8.30 branch (#2773)
s3krit Mar 30, 2021
4b86755
Merge branch 'release-v0.8.30' into release
s3krit Apr 8, 2021
4d126f4
FallbackStrategy::Nothing
shawntabrizi May 24, 2021
4dd3933
bump versions
kianenigma May 25, 2021
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
6 changes: 3 additions & 3 deletions .github/workflows/publish-draft-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ jobs:
matrix:
runtime: ['polkadot', 'kusama']
container:
image: paritytech/srtool:nightly-2020-10-27
image: chevdor/srtool:nightly-2021-03-15
volumes:
- ${{ github.workspace }}:/build
env:
PACKAGE: ${{ matrix.runtime }}-runtime
RUSTC_VERSION: nightly-2020-10-27
RUSTC_VERSION: nightly-2021-03-15
steps:
- uses: actions/checkout@v2
- name: Cache target dir
Expand Down Expand Up @@ -126,7 +126,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ needs.publish-draft-release.outputs.asset_upload_url }}
asset_path: ./${{ matrix.runtime }}_runtime.compact.wasm
asset_path: ./runtime/${{ matrix.runtime }}/target/srtool/release/wbuild/${{ matrix.runtime }}-runtime/${{ matrix.runtime }}_runtime.compact.wasm
asset_name: ${{ matrix.runtime }}_runtime-v${{ steps.get-runtime-ver.outputs.runtime_ver }}.compact.wasm
asset_content_type: application/wasm

Expand Down
290 changes: 145 additions & 145 deletions Cargo.lock

Large diffs are not rendered by default.

44 changes: 22 additions & 22 deletions bridges/bin/millau/node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,31 +24,31 @@ pallet-message-lane-rpc = { path = "../../../modules/message-lane/rpc" }

# Substrate Dependencies

frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master" }
frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master", features = ["wasmtime"] }
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-finality-grandpa-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
substrate-frame-rpc-system = { git = "https://github.com/paritytech/substrate", branch = "master" }
frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" }
frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" }
sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" }
sc-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30", features = ["wasmtime"] }
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" }
sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" }
sc-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" }
sc-executor = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" }
sc-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" }
sc-finality-grandpa-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" }
sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" }
sc-service = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" }
sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" }
sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" }
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" }
sp-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" }
sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" }
sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" }
substrate-frame-rpc-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" }

[build-dependencies]
build-script-utils = { package = "substrate-build-script-utils", version = "2.0" }
frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "master" }
frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" }
vergen = "3.1.0"

[features]
Expand Down
50 changes: 25 additions & 25 deletions bridges/bin/millau/runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,31 +28,31 @@ pallet-substrate-bridge = { path = "../../../modules/substrate", default-feature

# Substrate Dependencies

frame-executive = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false }
frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false }
frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false }
frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false }
pallet-aura = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false }
pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false }
pallet-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false }
pallet-randomness-collective-flip = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false }
pallet-session = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false }
pallet-sudo = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false }
pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false }
pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false }
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false }
sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false }
sp-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false }
sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false }
sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false }
sp-offchain = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false }
sp-session = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false }
sp-std = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false }
sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false }
sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false }
sp-version = { git = "https://github.com/paritytech/substrate", branch = "master" , default-features = false }
frame-executive = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" , default-features = false }
frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" , default-features = false }
frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" , default-features = false }
frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" , default-features = false }
pallet-aura = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" , default-features = false }
pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" , default-features = false }
pallet-grandpa = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" , default-features = false }
pallet-randomness-collective-flip = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" , default-features = false }
pallet-session = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" , default-features = false }
pallet-sudo = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" , default-features = false }
pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" , default-features = false }
pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" , default-features = false }
sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" , default-features = false }
sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" , default-features = false }
sp-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" , default-features = false }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" , default-features = false }
sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" , default-features = false }
sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" , default-features = false }
sp-offchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" , default-features = false }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" , default-features = false }
sp-session = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" , default-features = false }
sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" , default-features = false }
sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" , default-features = false }
sp-trie = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" , default-features = false }
sp-version = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" , default-features = false }

[build-dependencies]
wasm-builder-runner = { package = "substrate-wasm-builder-runner", version = "2.0.0" }
Expand Down
46 changes: 23 additions & 23 deletions bridges/bin/rialto/node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,32 +24,32 @@ rialto-runtime = { path = "../runtime" }

# Substrate Dependencies

frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master" }
frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master", features = ["wasmtime"] }
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-finality-grandpa-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" }
sc-telemetry = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
substrate-frame-rpc-system = { git = "https://github.com/paritytech/substrate", branch = "master" }
frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" }
frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" }
sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" }
sc-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30", features = ["wasmtime"] }
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" }
sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" }
sc-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" }
sc-executor = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" }
sc-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" }
sc-finality-grandpa-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" }
sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" }
sc-service = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" }
sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" }
sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" }
sc-telemetry = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" }
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" }
sp-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" }
sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" }
sp-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" }
substrate-frame-rpc-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" }

[build-dependencies]
build-script-utils = { package = "substrate-build-script-utils", version = "2.0" }
frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "master" }
frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.8.30" }
vergen = "3.1.0"

[features]
Expand Down
Loading