diff --git a/www/docs/blog/posts/2023-11-06-goreleaser-v1.22.md b/www/docs/blog/posts/2023-11-06-goreleaser-v1.22.md new file mode 100644 index 000000000..df84a9380 --- /dev/null +++ b/www/docs/blog/posts/2023-11-06-goreleaser-v1.22.md @@ -0,0 +1,55 @@ +--- +date: 2023-11-06 +slug: goreleaser-v1.22 +categories: [announcements] +authors: [caarlos0] +--- + +# Announcing GoReleaser v1.22 - steady improvement + +Another boring release, with mostly bug fixes and quality-of-life improvements. + + + +## Highlights + +- Several new pipes can be skipped with `--skip=pipe`, check `goreleaser release +--help` for details +- If you have `gomod.proxy` enabled, GoReleaser will now check if your + `go.mod` has `replace` directives, and warn you about them on snapshots, + and straight out fail on a production build +- If you have `gomod.proxy` enabled and a `go.work` file with multiple modules, + GoReleaser will now properly handle it, using the first module as proxy + target +- Planning for v2, we added an optional `version` field to the configuration + file +- The checksum file will now be sorted by filename, as it should + +As always, bug fixes, dependency updates, housekeeping, and documentation +updates are included in this release as well. + +## Other news + +- GoReleaser now has ~12.3k stars and 356 contributors! Thanks, everyone! +- We eventually discuss new features in our Discord server.  + [Join the conversation][discord]! +- nFPM had new releases as well,  + [check it out](https://github.com/goreleaser/nfpm/releases). + +## Download + +You can [install][] or upgrade using your favorite package manager, or see the +full release notes and download the pre-compiled binaries [here][oss-rel] and +[here (for Pro)][pro-rel]. + +## Helping out + +You can help by contributing features and bug fixes, or by donating. +You may also be interested in buying a GoReleaser Pro license. + +You can find out more [here](https://goreleaser.com/sponsors/). + +[install]: https://goreleaser.com/install +[pro-rel]: https://github.com/goreleaser/goreleaser-pro/releases/tag/v1.22.0-pro +[oss-rel]: https://github.com/goreleaser/goreleaser/releases/tag/v1.22.0 +[discord]: https://goreleaser.com/discord diff --git a/www/docs/cmd/goreleaser_release.md b/www/docs/cmd/goreleaser_release.md index 3ab085417..69297be90 100644 --- a/www/docs/cmd/goreleaser_release.md +++ b/www/docs/cmd/goreleaser_release.md @@ -26,7 +26,7 @@ goreleaser release [flags] --release-notes string Load custom release notes from a markdown file (will skip GoReleaser changelog generation) --release-notes-tmpl string Load custom release notes from a templated markdown file (overrides --release-notes) --single-target Builds only for current GOOS and GOARCH, regardless of what's set in the configuration file (implies --skip-publish) (Pro only) - --skip strings Skip the given options (valid options are: after, announce, before, docker, fury, ko, publish, sbom, sign, validate) + --skip strings Skip the given options (valid options are: after, announce, aur, before, docker, fury, homebrew, ko, nix, publish, sbom, scoop, sign, snapcraft, validate, winget) --snapshot Generate an unversioned snapshot release, skipping all validations and without publishing any artifacts (implies --skip=announce,publish,validate) --split Split the build so it can be merged and published later (implies --prepare) (Pro only) --timeout duration Timeout to the entire release process (default 30m0s)