From c1470886e09b1aaeb0d837baaa96ed655b2fa148 Mon Sep 17 00:00:00 2001 From: Graham Russell Date: Thu, 19 Dec 2024 16:24:15 +0000 Subject: [PATCH] Release v0.8.0 **Implemented enhancements:** - Expose LiveSync to the terraform provider [\#180](https://github.com/ably/terraform-provider-ably/issues/180) **Closed issues:** - Following instructions for importing configuration doesn't work [\#181](https://github.com/ably/terraform-provider-ably/issues/181) **Merged pull requests:** - Bump golang.org/x/crypto from 0.21.0 to 0.31.0 [\#188](https://github.com/ably/terraform-provider-ably/pull/188) ([dependabot[bot]](https://github.com/apps/dependabot)) - \[INF-5307\] - Add the MongoDB & PostgreSQL Outbox Ably Ingress Rules [\#187](https://github.com/ably/terraform-provider-ably/pull/187) ([graham-russell](https://github.com/graham-russell)) - Update documentation for importing existing apps to use app id instead of a name [\#186](https://github.com/ably/terraform-provider-ably/pull/186) ([kavalerov](https://github.com/kavalerov)) - Update goreleaser [\#185](https://github.com/ably/terraform-provider-ably/pull/185) ([surminus](https://github.com/surminus)) --- CHANGELOG.md | 21 ++++++++++++++++++++- Makefile | 2 +- 2 files changed, 21 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9be264a..3fc1972 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # Changelog -j + +## [0.8.0](https://github.com/ably/terraform-provider-ably/tree/v0.8.0) + +[Full Changelog](https://github.com/ably/terraform-provider-ably/compare/v0.7.0..v0.8.0) + +**Implemented enhancements:** + +- Expose LiveSync to the terraform provider [\#180](https://github.com/ably/terraform-provider-ably/issues/180) + +**Closed issues:** + +- Following instructions for importing configuration doesn't work [\#181](https://github.com/ably/terraform-provider-ably/issues/181) + +**Merged pull requests:** + +- Bump golang.org/x/crypto from 0.21.0 to 0.31.0 [\#188](https://github.com/ably/terraform-provider-ably/pull/188) ([dependabot[bot]](https://github.com/apps/dependabot)) +- \[INF-5307\] - Add the MongoDB & PostgreSQL Outbox Ably Ingress Rules [\#187](https://github.com/ably/terraform-provider-ably/pull/187) ([graham-russell](https://github.com/graham-russell)) +- Update documentation for importing existing apps to use app id instead of a name [\#186](https://github.com/ably/terraform-provider-ably/pull/186) ([kavalerov](https://github.com/kavalerov)) +- Update goreleaser [\#185](https://github.com/ably/terraform-provider-ably/pull/185) ([surminus](https://github.com/surminus)) + ## [0.7.0](https://github.com/ably/terraform-provider-ably/tree/v0.7.0) [Full Changelog](https://github.com/ably/terraform-provider-ably/compare/v0.6.1...v0.7.0) diff --git a/Makefile b/Makefile index 1405d90..999ffd0 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ HOSTNAME=github.com NAMESPACE=ably NAME=ably BINARY=terraform-provider-${NAME} -VERSION=0.7.0 +VERSION=0.8.0 OS ?= $(shell uname -s | tr '[:upper:]' '[:lower:]') ARCH_NATIVE := $(shell uname -m) ARCH_MAPPED := $(shell echo "$(ARCH_NATIVE)" | sed -e 's/x86_64/amd64/' -e 's/aarch64/arm64/' -e 's/armv7l/arm/')