Skip to content

Commit 26295ee

Browse files
committed
Release v3.13.0
1 parent aedfab0 commit 26295ee

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

CHANGELOG.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,18 @@
44

55
- No changes yet.
66

7+
## [v3.13.0] - 2023-06-29
8+
9+
- Update go.mod and retract all v3.12.X tags. They were accidentally pushed and contain a reference
10+
to the wrong Go module.
11+
712
## [v3.12.0] - 2023-06-29
813

914
- Fix `up` and `up -allowing-missing` behavior.
1015
- Fix empty version in log output.
1116
- Add new `context.Context`-aware functions and methods, for both sql and go migrations.
1217
- Return error when no migration files found or dir is not a directory.
1318

14-
[Unreleased]: https://github.com/pressly/goose/compare/v3.12.0...HEAD
15-
[v3.12.0]: https://github.com/bufbuild/buf/compare/v3.11.2...v3.12.0
19+
[Unreleased]: https://github.com/pressly/goose/compare/v3.13.0...HEAD
20+
[v3.13.0]: https://github.com/pressly/goose/compare/v3.12.0...v3.13.0
21+
[v3.12.0]: https://github.com/pressly/goose/compare/v3.11.2...v3.12.0

cmd/goose/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ var (
3737
noColor = flags.Bool("no-color", false, "disable color output (NO_COLOR env variable supported)")
3838
)
3939
var (
40-
gooseVersion = "v3.12.0"
40+
gooseVersion = "v3.13.0"
4141
)
4242

4343
func main() {

go.mod

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,3 +79,9 @@ require (
7979
modernc.org/strutil v1.1.3 // indirect
8080
modernc.org/token v1.1.0 // indirect
8181
)
82+
83+
retract (
84+
v3.12.2 // Invalid module reference
85+
v3.12.1 // Invalid module reference
86+
v3.12.0 // Invalid module reference
87+
)

0 commit comments

Comments
 (0)