Skip to content

Commit

Permalink
v4.6.0 (#749)
Browse files Browse the repository at this point in the history
EDIT: Force pushed fix for .goreleaser.yml to main branch.
  • Loading branch information
Integralist committed Jan 3, 2023
1 parent a709876 commit 8f3d477
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 5 deletions.
17 changes: 12 additions & 5 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,20 @@ builds:
post:
- cmd: "scripts/documentation.sh {{ .Path }}"
# https://goreleaser.com/customization/archive/
# NOTE:Default `format` is tar.gz
archives:
- builds: [macos, linux, windows]
name_template: "{{ .ProjectName }}_v{{ .Version }}_{{ .Os }}-{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}"
files:
- none* # https://goreleaser.com/customization/archive/#packaging-only-the-binaries
- id: nix
builds: [macos, linux]
<<: &archive_defaults
name_template: "{{ .ProjectName }}_v{{ .Version }}_{{ .Os }}-{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}"
files:
- none*
wrap_in_directory: false
format: tar.gz
- id: windows
builds: [windows]
<<: *archive_defaults
wrap_in_directory: false
format: tar.gz
aurs:
-
homepage: "https://github.com/fastly/cli"
Expand Down
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

## [v4.6.0](https://github.com/fastly/cli/releases/tag/v4.6.0) (2023-01-03)

[Full Changelog](https://github.com/fastly/cli/compare/v4.5.0...v4.6.0)

**Bug fixes:**

* vcl/snippet: pass AllowActiveLocked if --dynamic was passed [#742](https://github.com/fastly/cli/pull/742)

**Dependencies:**

* Bump goreleaser/goreleaser-action from 3 to 4 [#746](https://github.com/fastly/cli/pull/746)

**Enhancements:**

* Use DevHub endpoint for acquiring CLI/Viceroy metadata [#739](https://github.com/fastly/cli/pull/739)

## [v4.5.0](https://github.com/fastly/cli/releases/tag/v4.5.0) (2022-12-15)

[Full Changelog](https://github.com/fastly/cli/compare/v4.4.1...v4.5.0)
Expand Down

0 comments on commit 8f3d477

Please sign in to comment.