Skip to content

Commit

Permalink
Added migration guide
Browse files Browse the repository at this point in the history
  • Loading branch information
akru committed Aug 9, 2020
1 parent 15e6432 commit aae68e5
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 19 deletions.
36 changes: 18 additions & 18 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions bin/node/ipci-runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ sp-io = { git = "https://github.com/paritytech/substrate", branch = "rococo-bran

[features]
default = ["std"]
no_std = []
std = [
"codec/std",
"lazy_static",
Expand Down
1 change: 1 addition & 0 deletions bin/node/robonomics-runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ sp-io = { git = "https://github.com/paritytech/substrate", branch = "rococo-bran

[features]
default = ["std"]
no_std = []
std = [
"codec/std",
"sp-authority-discovery/std",
Expand Down
1 change: 1 addition & 0 deletions bin/node/robonomics-runtime/parachain/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ sp-io = { git = "https://github.com/paritytech/substrate", branch = "rococo-bran

[features]
default = ["std"]
no_std = []
std = [
"codec/std",
"lazy_static",
Expand Down
17 changes: 16 additions & 1 deletion migration.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,24 @@

This short tutorial helps to upgrade Robonomics parachain testnet during version upgrade.

## 0.19.x -> 0.20.0

1. Download precompiled binary from [release](https://github.com/airalab/robonomics/releases/tag/v0.20.0).

2. Wipe databases.

```
rm -rf $BASE_PATH/chains/robonomics/db
rm -rf $BASE_PATH/polkadot/db
```

where `BASE_PATH=~/.local/share/robonomics/` by default.

3. Launch new binary.

## 0.18.x -> 0.19.0

1. Download precompiled from [release](https://github.com/airalab/robonomics/releases/tag/v0.19.0).
1. Download precompiled binary from [release](https://github.com/airalab/robonomics/releases/tag/v0.19.0).

2. Wipe databases.

Expand Down

0 comments on commit aae68e5

Please sign in to comment.