@meith/upgrade 0.21.2 → 0.23.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/plan.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meith/upgrade",
3
- "version": "0.21.2",
3
+ "version": "0.23.0",
4
4
  "license": "MIT",
5
5
  "repository": {
6
6
  "type": "git",
package/src/plan.ts CHANGED
@@ -162,7 +162,7 @@ export function upgradeNotice(plan: UpgradePlan, state: UpgradeState): string |
162
162
  return (
163
163
  `This board is at ${plan.refusal.from} and the running code is ${plan.refusal.to} — ` +
164
164
  `${plan.refusal.span} majors apart, and upgrades are supported across ` +
165
- `${SUPPORTED_MAJOR_SPAN}. Upgrade in stages; see docs/upgrading.md.`
165
+ `${SUPPORTED_MAJOR_SPAN}. Upgrade in stages; see docs/guides/operations/upgrading.md.`
166
166
  )
167
167
  }
168
168
  if (plan.orderFailure?.kind === 'cycle') {