File tree Expand file tree Collapse file tree 4 files changed +10
-5
lines changed Expand file tree Collapse file tree 4 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -4,9 +4,15 @@ Notable changes between releases.
4
4
5
5
## Latest
6
6
7
+ ## v0.5.4
8
+
9
+ * Fix release signing process to use a compatible OpenPGP key algorithm
10
+ * Terraform Registry does not support ed25519, sign with the RSA key like in past releases
11
+
7
12
## v0.5.3
8
13
9
14
* Maintenance update to bump dependencies
15
+ * Skip this release, it was signed with the wrong key
10
16
11
17
## v0.5.2
12
18
Original file line number Diff line number Diff line change @@ -54,12 +54,11 @@ _output/%/terraform-provider-matchbox:
54
54
55
55
release-sign :
56
56
cd _output; sha256sum * .zip > terraform-provider-matchbox_$(SEMVER ) _SHA256SUMS
57
- gpg2 --detach-sign _output/terraform-provider-matchbox_$(SEMVER ) _SHA256SUMS
57
+ gpg --default-key 0x8F515AD1602065C8 --detach-sign _output/terraform-provider-matchbox_$(SEMVER ) _SHA256SUMS
58
58
59
59
release-verify : NAME=_output/terraform-provider-matchbox
60
60
release-verify :
61
- gpg2 --verify $(NAME ) _$(SEMVER ) _SHA256SUMS.sig $(NAME ) _$(SEMVER ) _SHA256SUMS
62
-
61
+ gpg --verify $(NAME ) _$(SEMVER ) _SHA256SUMS.sig $(NAME ) _$(SEMVER ) _SHA256SUMS
63
62
64
63
.PHONY : certificates
65
64
certificates :
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ terraform {
25
25
required_providers {
26
26
matchbox = {
27
27
source = "poseidon/matchbox"
28
- version = "0.5.2 "
28
+ version = "0.5.4 "
29
29
}
30
30
}
31
31
}
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ terraform {
20
20
required_providers {
21
21
matchbox = {
22
22
source = "poseidon/matchbox"
23
- version = "0.5.2 "
23
+ version = "0.5.4 "
24
24
}
25
25
}
26
26
}
You can’t perform that action at this time.
0 commit comments