From 26dcc3578afe96f70b373dae45892803c0b700f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karen=20C=C3=A1rcamo?= Date: Fri, 4 Oct 2024 07:59:40 +1300 Subject: [PATCH] Update to 0.6 for development (#358) --- .changelog/0.6.0.toml | 15 +++++++++++++++ .github/workflows/acceptance.yml | 8 +++----- VERSION | 2 +- internal/provider/version.go | 2 +- 4 files changed, 20 insertions(+), 7 deletions(-) create mode 100644 .changelog/0.6.0.toml diff --git a/.changelog/0.6.0.toml b/.changelog/0.6.0.toml new file mode 100644 index 0000000..f82d0cf --- /dev/null +++ b/.changelog/0.6.0.toml @@ -0,0 +1,15 @@ +[[breaking]] +title = "" +description = "" + +[[features]] +title = "" +description = "" + +[[enhancements]] +title = "" +description = "" + +[[bugs]] +title = "" +description = "" \ No newline at end of file diff --git a/.github/workflows/acceptance.yml b/.github/workflows/acceptance.yml index a50b81c..e5293dc 100644 --- a/.github/workflows/acceptance.yml +++ b/.github/workflows/acceptance.yml @@ -1,9 +1,7 @@ name: acceptance -# Temporarily halt as this release hasn't been deployed -# Testing has been done manually -# on: -# release: -# types: [published, unpublished, edited] +on: + release: + types: [published, unpublished, edited] jobs: acceptance: runs-on: ubuntu-latest diff --git a/VERSION b/VERSION index 9974c4b..7defe1e 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.5.0-dev \ No newline at end of file +0.6.0-dev \ No newline at end of file diff --git a/internal/provider/version.go b/internal/provider/version.go index be363bf..1e97cda 100644 --- a/internal/provider/version.go +++ b/internal/provider/version.go @@ -7,4 +7,4 @@ package provider // TODO: Make sure this variable is updated every time a new version is released // Version contains the current terraform provider version. -const Version = "0.5.0" +const Version = "0.6.0"