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

[Manta-PC] Update dependencies to v0.9.12 #242

Merged
merged 12 commits into from
Nov 6, 2021
10 changes: 6 additions & 4 deletions .github/workflows/publish-draft-releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -291,6 +291,7 @@ jobs:
-
if: ${{ needs.check-for-runtime-upgrade.outputs.do-versions-match == 'false' }}
run: |
ls -ahl ${{ github.workspace }}/
mkdir -p $HOME/.local/share/calamari-pc
mkdir -p $HOME/.local/bin
echo "${HOME}/.nvm/versions/node/v16.3.0/bin" >> $GITHUB_PATH
Expand All @@ -305,15 +306,16 @@ jobs:
if: ${{ needs.check-for-runtime-upgrade.outputs.do-versions-match == 'false' }}
name: mv and chmod manta-base
run: |
mv ${{ github.workspace }}/manta-base $HOME/.local/bin/
ls -ahl ${{ github.workspace }}/
mv ${{ github.workspace }}/manta $HOME/.local/bin/manta-base
stechu marked this conversation as resolved.
Show resolved Hide resolved
chmod +x $HOME/.local/bin/manta-base
ls -ahl ${{ github.workspace }}/
ls -ahl $HOME/.local/bin/
-
if: ${{ needs.check-for-runtime-upgrade.outputs.do-versions-match == 'false' }}
name: fetch and chmod polkadot
run: |
curl -L -o $HOME/.local/bin/polkadot https://github.com/paritytech/polkadot/releases/download/v0.9.11/polkadot
curl -L -o $HOME/.local/bin/polkadot https://github.com/paritytech/polkadot/releases/download/v0.9.12/polkadot
chmod +x $HOME/.local/bin/polkadot
ls -ahl $HOME/.local/bin/
-
Expand Down Expand Up @@ -430,7 +432,7 @@ jobs:
--error ${{ github.workspace }}/test-runtime-upgrade-${{ matrix.chain-spec.id }}-stderr.log \
--no-autorestart
cd ${{ github.workspace }}
sleep 30
sleep 120
-
if: ${{ needs.check-for-runtime-upgrade.outputs.do-versions-match == 'false' }}
name: stop testnet
Expand Down Expand Up @@ -517,7 +519,7 @@ jobs:
-
name: fetch and chmod polkadot
run: |
curl -L -o $HOME/.local/bin/polkadot https://github.com/paritytech/polkadot/releases/download/v0.9.11/polkadot
curl -L -o $HOME/.local/bin/polkadot https://github.com/paritytech/polkadot/releases/download/v0.9.12/polkadot
chmod +x $HOME/.local/bin/polkadot
ls -ahl $HOME/.local/bin/
-
Expand Down
15 changes: 14 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# CHANGELOG

## Pending
- [\#245](https://github.com/Manta-Network/Manta/pull/245) Unify manta and calamari client.

### Breaking changes

Expand All @@ -11,6 +10,20 @@

### Bug fixes

## v3.0.9

### Breaking changes

### Features

### Improvements
- [\#242](https://github.com/Manta-Network/Manta/pull/242) Update upstream dependencies to `0.9.12`. Various XCM safeguards. Bump runtime version to 5
- [\#244](https://github.com/Manta-Network/Manta/pull/244) Align benchmarking work flow with polkadot/kusama
- [\#245](https://github.com/Manta-Network/Manta/pull/245) Unify manta and calamari client.

### Bug fixes
- [\#233](https://github.com/Manta-Network/Manta/pull/233) Fix dockerfile so that build args are available at runtime and container entrypoint is correctly executed

## v3.0.8

### Breaking changes
Expand Down
Loading