Skip to content

Commit

Permalink
bump to v1.21
Browse files Browse the repository at this point in the history
  • Loading branch information
sduchesneau committed Sep 11, 2023
1 parent 8fdc11e commit 2b7a28e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## v0.7.1

* Bumped to `Golang` `1.21`, this will pull `goreleaser/goreleaser-cross:v1.21` so expect some delays before your build starts.`

## v0.7.0

### Deprecation
Expand Down
2 changes: 1 addition & 1 deletion cmd/sfreleaser/build.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ var BuildCmd = Command(nil,
// build vs release, what a mess. How to deal with this? I don't want to break compatibility.
flags.Bool("allow-dirty", false, "Perform release step even if Git is not clean, tries to configured used tool(s) to also allow dirty Git state")
flags.StringArray("pre-build-hooks", nil, "Set of pre build hooks to run before run the actual building steps")
flags.String("goreleaser-docker-image", "goreleaser/goreleaser-cross:v1.20.5", "Full Docker image used to run Goreleaser tool (which perform Go builds and GitHub releases (in all languages))")
flags.String("goreleaser-docker-image", "goreleaser/goreleaser-cross:v1.21", "Full Docker image used to run Goreleaser tool (which perform Go builds and GitHub releases (in all languages))")

// Flag specific to build
flags.Bool("all", false, "Build for all platforms and not your current machine")
Expand Down
2 changes: 1 addition & 1 deletion cmd/sfreleaser/release.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ var ReleaseCmd = Command(release,
flags.StringArray("pre-build-hooks", nil, "Set of pre build hooks to run before run the actual building steps, template your pre-hook with various injected variables, see long description of command for more details")
flags.StringArray("upload-extra-assets", nil, "If provided, add this extra asset file to the release, use a 'pre-build-hooks' to generate the file if needed")
flags.Bool("publish-now", false, "By default, publish the release to GitHub in draft mode, if the flag is used, the release is published as latest")
flags.String("goreleaser-docker-image", "goreleaser/goreleaser-cross:v1.20.5", "Full Docker image used to run Goreleaser tool (which perform Go builds and GitHub releases (in all languages))")
flags.String("goreleaser-docker-image", "goreleaser/goreleaser-cross:v1.21", "Full Docker image used to run Goreleaser tool (which perform Go builds and GitHub releases (in all languages))")

// Brew Flags
flags.Bool("brew-disabled", false, "[Brew only] Disable Brew tap release completely, only applies for 'Golang'/'Application' types")
Expand Down

0 comments on commit 2b7a28e

Please sign in to comment.