From 4e04e08c7b1145e40e0e4529f8026ec4b4e61191 Mon Sep 17 00:00:00 2001 From: Mike Fridman Date: Thu, 29 Jun 2023 18:21:21 -0400 Subject: [PATCH] Back to development --- .github/workflows/goreleaser.yml | 30 ------------------------------ CHANGELOG.md | 6 +----- cmd/goose/main.go | 2 +- 3 files changed, 2 insertions(+), 36 deletions(-) delete mode 100644 .github/workflows/goreleaser.yml diff --git a/.github/workflows/goreleaser.yml b/.github/workflows/goreleaser.yml deleted file mode 100644 index 1bba4117b..000000000 --- a/.github/workflows/goreleaser.yml +++ /dev/null @@ -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 }} diff --git a/CHANGELOG.md b/CHANGELOG.md index 07bb7eb6b..e37f3872e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/cmd/goose/main.go b/cmd/goose/main.go index c6494d640..359299fab 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.13.0" + gooseVersion = "v3.14.0-dev" ) func main() {