Skip to content

Commit d640814

Browse files
committed
v5.2.2 (#721)
1 parent ab89253 commit d640814

File tree

4 files changed

+13
-3
lines changed

4 files changed

+13
-3
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: Run GoReleaser
3434
uses: goreleaser/goreleaser-action@v4
3535
with:
36-
version: latest
36+
version: v1.18.2 # TODO: change to 'latest' once Go 1.21 is released (August 2023). This is so we can bump min Go version to 1.19.x which will fix a goreleaser dependency requirement.
3737
args: release --clean
3838
env:
3939
GPG_FINGERPRINT: ${{ steps.import_gpg.outputs.fingerprint }}

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
## 5.3.0 (Unreleased)
22

3+
## 5.2.2 (June 29, 2023)
4+
5+
BUG FIXES:
6+
7+
* fix(stores): remove store from state if not found remotely [#719](https://github.com/fastly/terraform-provider-fastly/pull/719)
8+
9+
DEPENDENCIES:
10+
11+
* build(deps): bump go-fastly to latest 8.5.4 [#720](https://github.com/fastly/terraform-provider-fastly/pull/720)
12+
313
## 5.2.1 (June 23, 2023)
414

515
DEPENDENCIES:

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ errcheck:
8181
@sh -c "'$(CURDIR)/scripts/errcheck.sh'"
8282

8383
goreleaser-bin:
84-
go install github.com/goreleaser/goreleaser@latest
84+
go install github.com/goreleaser/goreleaser@v1.18.2
8585

8686
# You can pass flags to goreleaser via GORELEASER_ARGS
8787
# --skip-validate will skip the checks

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ terraform {
2525
required_providers {
2626
fastly = {
2727
source = "fastly/fastly"
28-
version = ">= 5.2.1"
28+
version = ">= 5.2.2"
2929
}
3030
}
3131
}

0 commit comments

Comments
 (0)