chore(release): bump versions

This commit is contained in:
Joakim Carlstein 2023-11-10 10:55:42 +01:00
parent 9c239e0ae5
commit 9880778650
15 changed files with 52 additions and 39 deletions

View file

@ -1,5 +0,0 @@
---
'@emigrate/plugin-generate-js': minor
---
First version. A simple JavaScript migration file generator.

View file

@ -1,5 +0,0 @@
---
'emigrate': minor
---
Add template support for the "new" migration command

View file

@ -1,5 +0,0 @@
---
'@emigrate/tsconfig': major
---
First release and it's considered stable as it has been in use in other projects for a while.

View file

@ -1,5 +0,0 @@
---
'emigrate': minor
---
Automatically prefix plugin names when loading them if necessary. I.e. when specifying only "--plugin generate-js" Emigrate will load the @emigrate/plugin-generate-js plugin. It has a priority order that is: 1. the provided plugin name as is, 2. the name prefixed with "@emigrate/plugin-", 3. the name prefixed with "emigrate-plugin-"

View file

@ -1,5 +0,0 @@
---
'@emigrate/plugin-tools': minor
---
First version of the @emigrate/plugin-tools package which contains some nice to have utilities when building and using Emigrate plugins

View file

@ -1,5 +0,0 @@
---
'@emigrate/plugin-tools': minor
---
Use import-from-esm to resolve plugins relative to the current working directory and add a convenient plugin loader helper (loadPlugin)

View file

@ -1,5 +0,0 @@
---
'@emigrate/plugin-tools': patch
---
Remove double and trailing underscores in sanitized filenames and lower case the result for consistent filenames

View file

@ -0,0 +1,15 @@
# emigrate
## 0.1.0
### Minor Changes
- ca3ab9e: Add template support for the "new" migration command
- 9c239e0: Automatically prefix plugin names when loading them if necessary. I.e. when specifying only "--plugin generate-js" Emigrate will load the @emigrate/plugin-generate-js plugin. It has a priority order that is: 1. the provided plugin name as is, 2. the name prefixed with "@emigrate/plugin-", 3. the name prefixed with "emigrate-plugin-"
### Patch Changes
- Updated dependencies [cdafd05]
- Updated dependencies [9c239e0]
- Updated dependencies [1634094]
- @emigrate/plugin-tools@0.1.0

View file

@ -1,6 +1,6 @@
{ {
"name": "emigrate", "name": "emigrate",
"version": "0.0.0", "version": "0.1.0",
"publishConfig": { "publishConfig": {
"access": "public" "access": "public"
}, },

View file

@ -0,0 +1,14 @@
# @emigrate/plugin-generate-js
## 0.1.0
### Minor Changes
- ce4693d: First version. A simple JavaScript migration file generator.
### Patch Changes
- Updated dependencies [cdafd05]
- Updated dependencies [9c239e0]
- Updated dependencies [1634094]
- @emigrate/plugin-tools@0.1.0

View file

@ -1,6 +1,6 @@
{ {
"name": "@emigrate/plugin-generate-js", "name": "@emigrate/plugin-generate-js",
"version": "0.0.0", "version": "0.1.0",
"publishConfig": { "publishConfig": {
"access": "public" "access": "public"
}, },

View file

@ -0,0 +1,12 @@
# @emigrate/plugin-tools
## 0.1.0
### Minor Changes
- cdafd05: First version of the @emigrate/plugin-tools package which contains some nice to have utilities when building and using Emigrate plugins
- 9c239e0: Use import-from-esm to resolve plugins relative to the current working directory and add a convenient plugin loader helper (loadPlugin)
### Patch Changes
- 1634094: Remove double and trailing underscores in sanitized filenames and lower case the result for consistent filenames

View file

@ -1,6 +1,6 @@
{ {
"name": "@emigrate/plugin-tools", "name": "@emigrate/plugin-tools",
"version": "0.0.0", "version": "0.1.0",
"publishConfig": { "publishConfig": {
"access": "public" "access": "public"
}, },

View file

@ -0,0 +1,7 @@
# @emigrate/tsconfig
## 1.0.0
### Major Changes
- 5978020: First release and it's considered stable as it has been in use in other projects for a while.

View file

@ -1,6 +1,6 @@
{ {
"name": "@emigrate/tsconfig", "name": "@emigrate/tsconfig",
"version": "0.0.0", "version": "1.0.0",
"publishConfig": { "publishConfig": {
"access": "public" "access": "public"
}, },