diff --git a/CHANGELOG.md b/CHANGELOG.md index 9fe349edd..07bb7eb6b 100644 --- a/CHANGELOG.md +++ b/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 diff --git a/cmd/goose/main.go b/cmd/goose/main.go index 3e2a3ec77..c6494d640 100644 --- a/cmd/goose/main.go +++ b/cmd/goose/main.go @@ -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() { diff --git a/go.mod b/go.mod index ff6b101aa..b9772a1a8 100644 --- a/go.mod +++ b/go.mod @@ -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 +)