Skip to content

Commit

Permalink
Release v3.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mfridman committed Jun 29, 2023
1 parent aedfab0 commit 26295ee
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,18 @@

- 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.
- Fix empty version in log output.
- 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
2 changes: 1 addition & 1 deletion cmd/goose/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down
6 changes: 6 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
)

0 comments on commit 26295ee

Please sign in to comment.