mirror of https://github.com/pressly/goose.git
parent
aedfab0584
commit
26295ee173
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -4,6 +4,11 @@
|
|||
|
||||
- No changes yet.
|
||||
|
||||
## [v3.13.0] - 2023-06-29
|
||||
|
||||
- Update go.mod and retract all v3.12.X tags. They were accidentally pushed and contain a reference
|
||||
to the wrong Go module.
|
||||
|
||||
## [v3.12.0] - 2023-06-29
|
||||
|
||||
- Fix `up` and `up -allowing-missing` behavior.
|
||||
|
@ -11,5 +16,6 @@
|
|||
- Add new `context.Context`-aware functions and methods, for both sql and go migrations.
|
||||
- Return error when no migration files found or dir is not a directory.
|
||||
|
||||
[Unreleased]: https://github.com/pressly/goose/compare/v3.12.0...HEAD
|
||||
[v3.12.0]: https://github.com/bufbuild/buf/compare/v3.11.2...v3.12.0
|
||||
[Unreleased]: https://github.com/pressly/goose/compare/v3.13.0...HEAD
|
||||
[v3.13.0]: https://github.com/pressly/goose/compare/v3.12.0...v3.13.0
|
||||
[v3.12.0]: https://github.com/pressly/goose/compare/v3.11.2...v3.12.0
|
||||
|
|
|
@ -37,7 +37,7 @@ var (
|
|||
noColor = flags.Bool("no-color", false, "disable color output (NO_COLOR env variable supported)")
|
||||
)
|
||||
var (
|
||||
gooseVersion = "v3.12.0"
|
||||
gooseVersion = "v3.13.0"
|
||||
)
|
||||
|
||||
func main() {
|
||||
|
|
Loading…
Reference in New Issue