diff --git a/.changeset/beige-bottles-tie.md b/.changeset/beige-bottles-tie.md deleted file mode 100644 index 148f832..0000000 --- a/.changeset/beige-bottles-tie.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@emigrate/cli': minor ---- - -Add support for the --no-execution option to the "up" command to be able to log migrations as successful without actually running them. Can for instance be used for baselining a database or logging manually run migrations as successful. diff --git a/.changeset/grumpy-files-heal.md b/.changeset/grumpy-files-heal.md deleted file mode 100644 index 187b4b4..0000000 --- a/.changeset/grumpy-files-heal.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@emigrate/cli': patch ---- - -Clarify which cli options that needs parameters diff --git a/.changeset/quiet-ravens-sleep.md b/.changeset/quiet-ravens-sleep.md deleted file mode 100644 index 24023cf..0000000 --- a/.changeset/quiet-ravens-sleep.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@emigrate/cli': minor ---- - -Add --from and --to CLI options to control which migrations to include or skip when executing migrations. diff --git a/.changeset/sharp-buses-draw.md b/.changeset/sharp-buses-draw.md deleted file mode 100644 index 1070334..0000000 --- a/.changeset/sharp-buses-draw.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@emigrate/cli': minor ---- - -Add --limit option to the "up" command, for limiting the number of migrations to run diff --git a/.changeset/smart-ducks-cheer.md b/.changeset/smart-ducks-cheer.md deleted file mode 100644 index 6115706..0000000 --- a/.changeset/smart-ducks-cheer.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@emigrate/cli': patch ---- - -Use better wording in the header in the console output from the default reporter diff --git a/.changeset/stupid-kings-battle.md b/.changeset/stupid-kings-battle.md deleted file mode 100644 index f1fd283..0000000 --- a/.changeset/stupid-kings-battle.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@emigrate/docs': minor ---- - -Add first version of the [Baseline guide](https://emigrate.dev/guides/baseline) diff --git a/.changeset/unlucky-seals-camp.md b/.changeset/unlucky-seals-camp.md deleted file mode 100644 index fe808e4..0000000 --- a/.changeset/unlucky-seals-camp.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@emigrate/docs': minor ---- - -Document the new --limit, --from and --to options for the ["up" command](https://emigrate.dev/commands/up/) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md new file mode 100644 index 0000000..1fec6e8 --- /dev/null +++ b/docs/CHANGELOG.md @@ -0,0 +1,8 @@ +# @emigrate/docs + +## 0.1.0 + +### Minor Changes + +- cbc35bd: Add first version of the [Baseline guide](https://emigrate.dev/guides/baseline) +- cbc35bd: Document the new --limit, --from and --to options for the ["up" command](https://emigrate.dev/commands/up/) diff --git a/docs/package.json b/docs/package.json index 6bbd190..bdc380e 100644 --- a/docs/package.json +++ b/docs/package.json @@ -2,7 +2,7 @@ "name": "@emigrate/docs", "private": true, "type": "module", - "version": "0.0.1", + "version": "0.1.0", "scripts": { "dev": "astro dev", "start": "astro dev", diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 5b991fd..09e5617 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,18 @@ # @emigrate/cli +## 0.15.0 + +### Minor Changes + +- f515c8a: Add support for the --no-execution option to the "up" command to be able to log migrations as successful without actually running them. Can for instance be used for baselining a database or logging manually run migrations as successful. +- 9ef0fa2: Add --from and --to CLI options to control which migrations to include or skip when executing migrations. +- 02c142e: Add --limit option to the "up" command, for limiting the number of migrations to run + +### Patch Changes + +- bf4d596: Clarify which cli options that needs parameters +- 98adcda: Use better wording in the header in the console output from the default reporter + ## 0.14.1 ### Patch Changes diff --git a/packages/cli/package.json b/packages/cli/package.json index d85ddfb..280cdce 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@emigrate/cli", - "version": "0.14.1", + "version": "0.15.0", "publishConfig": { "access": "public" },