Back to development

pull/530/merge
Mike Fridman 2023-06-29 18:21:21 -04:00
parent 26295ee173
commit 4e04e08c7b
No known key found for this signature in database
3 changed files with 2 additions and 36 deletions

View File

@ -1,30 +0,0 @@
name: goreleaser
on:
push:
tags:
- "*"
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "stable"
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v3
with:
# either 'goreleaser' (default) or 'goreleaser-pro'
distribution: goreleaser
version: latest
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# Your GoReleaser Pro key, if you are using the 'goreleaser-pro' distribution
# GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }}

View File

@ -8,14 +8,10 @@
- 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.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
[v3.13.0]: https://github.com/pressly/goose/compare/v3.11.2...v3.13.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.13.0"
gooseVersion = "v3.14.0-dev"
)
func main() {