chore(release): version packages
This commit is contained in:
parent
49d8925778
commit
576dfbb124
11 changed files with 23 additions and 37 deletions
|
|
@ -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.
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'@emigrate/cli': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Clarify which cli options that needs parameters
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'@emigrate/cli': minor
|
|
||||||
---
|
|
||||||
|
|
||||||
Add --from and --to CLI options to control which migrations to include or skip when executing migrations.
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'@emigrate/cli': minor
|
|
||||||
---
|
|
||||||
|
|
||||||
Add --limit option to the "up" command, for limiting the number of migrations to run
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'@emigrate/cli': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Use better wording in the header in the console output from the default reporter
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'@emigrate/docs': minor
|
|
||||||
---
|
|
||||||
|
|
||||||
Add first version of the [Baseline guide](https://emigrate.dev/guides/baseline)
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'@emigrate/docs': minor
|
|
||||||
---
|
|
||||||
|
|
||||||
Document the new --limit, --from and --to options for the ["up" command](https://emigrate.dev/commands/up/)
|
|
||||||
8
docs/CHANGELOG.md
Normal file
8
docs/CHANGELOG.md
Normal file
|
|
@ -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/)
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
"name": "@emigrate/docs",
|
"name": "@emigrate/docs",
|
||||||
"private": true,
|
"private": true,
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"version": "0.0.1",
|
"version": "0.1.0",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "astro dev",
|
"dev": "astro dev",
|
||||||
"start": "astro dev",
|
"start": "astro dev",
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,18 @@
|
||||||
# @emigrate/cli
|
# @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
|
## 0.14.1
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@emigrate/cli",
|
"name": "@emigrate/cli",
|
||||||
"version": "0.14.1",
|
"version": "0.15.0",
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue