r0gue-io / base-parachain

A standard parachain template, used as the base for other templates.
The Unlicense
3 stars 6 forks source link

chore: polkadot v1.10.0 #21

Closed Daanvdplas closed 6 months ago

Daanvdplas commented 6 months ago

Base parachain upgrade:

  1. psvm -v "<release>" in root: upgrades Cargo.toml crate dependencies to the correct version respected to the polkadot release version. e.g. psvm -v "1.10.0"
  2. Compare release version with previous release on github. e.g. compare 1.10.0 with 1.9.0
  3. Check the files changed and go over the templates/parachain/ files. Apply changes to the base parachain.
  4. Check the release for additional information of the changes that are made. Take note of the changes required for assets and contracts. These notes can then be used for downstream templates.

As for the latter, no changes have been found that affect asset parachain or contracts parachain.

Other changes:

Daanvdplas commented 6 months ago

It caused issues with the xcm dependency. Can't rename a module in rust like: mod xcm as xcm_config;

I don't want to rename the xcm dependency since that will have impact on many places and is bad devex tmo.