From f04c17e163e18b4448451102b9b5ac9722aed219 Mon Sep 17 00:00:00 2001 From: Jason Pilz Date: Tue, 11 Jun 2024 15:41:24 -0700 Subject: [PATCH 1/3] Update contributing README --- contributing/README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/contributing/README.md b/contributing/README.md index b8f154c2..e0b30366 100644 --- a/contributing/README.md +++ b/contributing/README.md @@ -480,12 +480,14 @@ $ make website ## Releasing +> Releasing is currently a manual process, please reach out to [#team-cloud-core-platform](https://hashicorp.enterprise.slack.com/archives/C073FTXFLTA) for assistance. + If it is your first time releasing, following the onboarding [steps here](https://hashicorp.atlassian.net/wiki/spaces/RELENG/pages/2301263888/Part+1+Onboarding+Pre-Requisites#Steps-for-each-member-of-your-team-to-complete). To get the main branch ready for a release ensure the following: -- [ ] The version in `cmd/VERSION` is updated to the desired version. +- [ ] The version in `version/VERSION` is updated to the desired version. - [ ] The `CHANGELOG.md` is updated with the new version and the changes. The changelog can be generated using `LAST_RELEASE_GIT_TAG=v0.x.y make changelog/build` - [ ] Changes since the last release are manually tested and working. From 3484cf3837b5eb62735082054485b7591c5ed996 Mon Sep 17 00:00:00 2001 From: Jason Pilz Date: Tue, 11 Jun 2024 15:43:22 -0700 Subject: [PATCH 2/3] Bump version to 0.3.0 --- version/VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version/VERSION b/version/VERSION index d5109100..0d91a54c 100644 --- a/version/VERSION +++ b/version/VERSION @@ -1 +1 @@ -0.3.0-dev +0.3.0 From dbed7a560c1ca2d8240dc47495898606706cc92e Mon Sep 17 00:00:00 2001 From: Jason Pilz Date: Tue, 11 Jun 2024 16:03:56 -0700 Subject: [PATCH 3/3] Update CHANGELOG --- CHANGELOG.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index fe9fb560..31d87087 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +## 0.3.0 (June 11, 2024) + +FEATURES: + +* iam: Adds `read-policy`, `set-policy`, `add-binding`, and `delete-binding` subcommands to `hcp iam groups iam` which allow the ability to manage an IAM policy on a group. +- `read-policy` Reads an IAM policy for a specified group. +- `set-policy` Sets an IAM policy for a group using a JSON file. +- `add-binding` Adds a single role binding to a user principal. +- `delete-binding` Removes a single role binding from a user principal. [[GH-113](https://github.com/hashicorp/hcp/issues/113)] +* vault-secrets: Add `vault-secrets` CLI for managing Vault Secrets resources. [[GH-105](https://github.com/hashicorp/hcp/issues/105)] + ## 0.2.0 (May 31, 2024) BREAKING CHANGES: