Skip to content

Commit

Permalink
Prepare to release v0.3.0
Browse files Browse the repository at this point in the history
* Bump version in README and docs
* Update release signing process to specify the legacy RSA
key since Hashicorp does not support ed25519 keys
* Add release.yaml to generate release notes
  • Loading branch information
dghubble committed Jun 22, 2024
1 parent 40d949f commit 4017818
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 4 deletions.
12 changes: 12 additions & 0 deletions .github/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
changelog:
categories:
- title: Contributions
labels:
- '*'
exclude:
labels:
- dependencies
- no-release-note
- title: Dependencies
labels:
- dependencies
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ Notable changes between releases.

## Latest

## v0.3.0

* Add `util_nix` to parse and serialize NixOS modules as awkballs
* Note, this is highly unusual utility I required. It's quite experimental

## v0.2.2

* Improve `util_register` plan diff to show expected value ([#10](https://github.com/poseidon/terraform-provider-util/pull/10))
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ _output/%/terraform-provider-util:

release-sign:
cd _output; sha256sum *.zip > terraform-provider-util_$(SEMVER)_SHA256SUMS
gpg2 --detach-sign _output/terraform-provider-util_$(SEMVER)_SHA256SUMS
gpg --default-key 0x8F515AD1602065C8 --detach-sign _output/terraform-provider-util_$(SEMVER)_SHA256SUMS

release-verify: NAME=_output/terraform-provider-util
release-verify:
gpg2 --verify $(NAME)_$(SEMVER)_SHA256SUMS.sig $(NAME)_$(SEMVER)_SHA256SUMS
gpg --default-key 0x8F515AD1602065C8 --verify $(NAME)_$(SEMVER)_SHA256SUMS.sig $(NAME)_$(SEMVER)_SHA256SUMS
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ terraform {
required_providers {
ct = {
source = "poseidon/util"
version = "0.2.2"
version = "0.3.0"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ terraform {
required_providers {
ct = {
source = "poseidon/util"
version = "0.2.0"
version = "0.3.0"
}
}
}
Expand Down

0 comments on commit 4017818

Please sign in to comment.