paritytech / prdoc

prdoc files are YAML files following a defined schema and helping with code change documentation.
MIT License
11 stars 1 forks source link

Enforce specifying the bump type alongside the name of the crate being bumped #29

Closed liamaharon closed 7 months ago

liamaharon commented 8 months ago

e.g. instead of writing

crates: 
  - name: pallet-balances
  - name: sp-io
  - name: remote-externalities

you'd write something like

crates:
  - pallet-balances minor
  - sp-io patch
  - remote-externalities major

Where the bump type can be major minor or patch.

This will be a key part of maintaining correct semver bumps once we switch to the new release process with stable/prerelease branches.

liamaharon commented 7 months ago

Wrong repo https://github.com/paritytech/polkadot-sdk/pull/3816