@meith/upgrade 0.26.1 → 0.27.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 +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meith/upgrade",
3
- "version": "0.26.1",
3
+ "version": "0.27.0",
4
4
  "license": "MIT",
5
5
  "repository": {
6
6
  "type": "git",
package/src/plan.ts CHANGED
@@ -190,7 +190,7 @@ export function upgradeNotice(plan: UpgradePlan, state: UpgradeState): string |
190
190
  `The database and this deployment are both at ${state.recordedVersion}, but ` +
191
191
  `${migrations} migration(s) have never been applied` +
192
192
  (plugins.length > 0 ? ` (${plugins.join(', ')})` : '') +
193
- '. Run `community upgrade`.'
193
+ '. Run `meith upgrade`.'
194
194
  )
195
195
  }
196
196
 
@@ -198,6 +198,6 @@ export function upgradeNotice(plan: UpgradePlan, state: UpgradeState): string |
198
198
  `An upgrade is pending: the database is at ${state.recordedVersion} and this deployment ` +
199
199
  `is ${state.codeVersion}` +
200
200
  (migrations > 0 ? `, with ${migrations} migration(s) to apply` : '') +
201
- '. Run `community upgrade`.'
201
+ '. Run `meith upgrade`.'
202
202
  )
203
203
  }