Skip to content

Commit

Permalink
chore(release): update version and changelogs for rc0.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cderici committed Jul 8, 2024
1 parent 440cd6a commit 634c210
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 3 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ Terraform 0.13 and later:
terraform {
required_providers {
juju = {
version = "~> 0.12.0"
version = "~> 0.13.0"
source = "juju/juju"
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/provider/provider.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
terraform {
required_providers {
juju = {
version = "~> 0.12.0"
version = "~> 0.13.0"
source = "juju/juju"
}
}
Expand Down

0 comments on commit 634c210

Please sign in to comment.