Skip to content

Commit

Permalink
Merge pull request #513 from cderici/update-changelog-rc0.13.0
Browse files Browse the repository at this point in the history
chore(release): update version and changelogs for 0.13.0-rc1
  • Loading branch information
cderici authored Jul 8, 2024
2 parents 440cd6a + f078899 commit 1fb72cf
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 3 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
## 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:

* 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.
* Bug reports are enhanced to require more information, including the Juju controller version.
* [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

## 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.14.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 1fb72cf

Please sign in to comment.