Release v3.13.0

pull/530/merge v3.13.0
Mike Fridman 2023-06-29 17:56:49 -04:00
parent aedfab0584
commit 26295ee173
3 changed files with 15 additions and 3 deletions

View File

@ -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

View File

@ -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() {

6
go.mod
View File

@ -79,3 +79,9 @@ require (
modernc.org/strutil v1.1.3 // indirect
modernc.org/token v1.1.0 // indirect
)
retract (
v3.12.2 // Invalid module reference
v3.12.1 // Invalid module reference
v3.12.0 // Invalid module reference
)