diff --git a/CHANGELOG.md b/CHANGELOG.md index 727778b0..a57c34d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,21 @@ +## 0.13.0 (July 08, 2024) + +NOTES: +* **This release requires juju controller version 2.9.49 or later juju.** +* This release uses juju client api code from the juju 3.5.1 release. + +ENHANCEMENTS: + +* Bug reports are enhanced to require more information, including the Juju controller version. +* Support for application resources to use storage is added. You can now use `storage` and `storage_directives` fields in an application resource to utilize storage in your application. +* [Conventional commits](https://www.conventionalcommits.org/en/v1.0.0/) are now required in contributions to the repository. +* Provider test runs are improved to run faster. + +BUG FIXES: + +* Placement and constraints directives are allowed to co-exist in machine resources. Added by @hmlanigan in https://github.com/juju/terraform-provider-juju/pull/499 +* Auto discovery of data necessary to connect to the juju controller is fixed by @hmlanigan in https://github.com/juju/terraform-provider-juju/pull/503 + ## 0.12.0 (April 22, 2024) NOTES: diff --git a/Makefile b/Makefile index 764063fd..f0dd8201 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,7 @@ go-install: GOOS=$(shell go env GOOS) GOARCH=$(shell go env GOARCH) GOPATH=$(shell go env GOPATH) -EDGEVERSION=0.12.0 +EDGEVERSION=0.13.0 REGISTRY_DIR=~/.terraform.d/plugins/registry.terraform.io/juju/juju/${EDGEVERSION}/${GOOS}_${GOARCH} .PHONY: install diff --git a/docs/index.md b/docs/index.md index 3e59d469..5de2a073 100644 --- a/docs/index.md +++ b/docs/index.md @@ -90,7 +90,7 @@ Terraform 0.13 and later: terraform { required_providers { juju = { - version = "~> 0.12.0" + version = "~> 0.13.0" source = "juju/juju" } } diff --git a/examples/provider/provider.tf b/examples/provider/provider.tf index 7a9f92e0..15f9b1c6 100644 --- a/examples/provider/provider.tf +++ b/examples/provider/provider.tf @@ -1,7 +1,7 @@ terraform { required_providers { juju = { - version = "~> 0.12.0" + version = "~> 0.13.0" source = "juju/juju" } }