From cadbd9cdf1feb55325bcb4148cc77c656168e624 Mon Sep 17 00:00:00 2001 From: Miha Martinec Date: Mon, 5 Feb 2024 12:29:13 +0100 Subject: [PATCH] Update release-checklist and changelog --- CHANGELOG.md | 8 ++++++++ release-checklist.md | 18 ++++++++++++++++-- 2 files changed, 24 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 63c521117..8467c15e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 1.23.1 (Feb 5, 2024) + +IMPROVEMENTS: + +- Bump `go` from 1.17 to 1.21 +- Bump `hashicorp/go-version` from 1.4.0 to 1.6.0 +- Bump `hashicorp/terraform-plugin-sdk/v2` from 2.16.0 to 2.32.0 +- Bump `aws/aws-sdk-go` from 1.44.114 to 1.50.10 ## 1.23.0 (Dec 12, 2023) diff --git a/release-checklist.md b/release-checklist.md index 9fee04cb3..d514c2b9d 100644 --- a/release-checklist.md +++ b/release-checklist.md @@ -1,8 +1,22 @@ # Release Checklist -## Add and push a new tag +## Update Changelog -That is really all you need to do now. Release assets will be build automatically by GoReleaser and the checksums file will be signed with the release signing key. A draft release will be created for the tag. +Add a new section to [CHANGELOG.md](https://github.com/gridscale/terraform-provider-gridscale/blob/master/CHANGELOG.md), use the following format for the changelog entry: +``` +FEATURES: +- ... + +IMPROVEMENTS: +- ... + +BUG FIXES: +- ... +``` + +## Add and push a new Tag + +That is really all you need to do - release assets will be build automatically by GoReleaser and the checksums file will be signed with the release signing key. A draft release will be created for the tag. $ git tag v1.7.0 $ git push --tags