Skip to content

Commit 9bfccfa

Browse files
authored
Merge pull request #303 from hmlanigan/changelog-0.9.0
0.9.0 Change log and internals update to prep release.
2 parents 10bcd60 + e2b3d74 commit 9bfccfa

File tree

2 files changed

+15
-5
lines changed

2 files changed

+15
-5
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## 0.9.0 (September 7, 2023)
2+
3+
ENHANCEMENTS:
4+
5+
* Migration from the Terraform SDK to the Terraform Framework for plugins
6+
7+
BUG FIXES:
8+
9+
* Provider panics when generating plan by @hmlanigan as part of https://github.com/juju/terraform-provider-juju/pull/265
10+
111
## 0.8.0 (June 13, 2023)
212

313
FEATURES:

Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ go-install:
1313
GOOS=$(shell go env GOOS)
1414
GOARCH=$(shell go env GOARCH)
1515
GOPATH=$(shell go env GOPATH)
16-
VERSION=0.9.0
17-
REGISTRY_DIR=~/.terraform.d/plugins/registry.terraform.io/juju/juju/${VERSION}/${GOOS}_${GOARCH}
16+
EDGEVERSION=0.10.0
17+
REGISTRY_DIR=~/.terraform.d/plugins/registry.terraform.io/juju/juju/${EDGEVERSION}/${GOOS}_${GOARCH}
1818

1919
.PHONY: install
2020
install: simplify docs go-install
21-
## install: Build terraform-provider-juju and copy to ~/.terraform.d using VERSION
22-
@echo "Copied to ~/.terraform.d/plugins/registry.terraform.io/juju/juju/${VERSION}/${GOOS}_${GOARCH}"
21+
## install: Build terraform-provider-juju and copy to ~/.terraform.d using EDGEVERSION
22+
@echo "Copied to ~/.terraform.d/plugins/registry.terraform.io/juju/juju/${EDGEVERSION}/${GOOS}_${GOARCH}"
2323
@mkdir -p ${REGISTRY_DIR}
24-
@cp ${GOPATH}/bin/terraform-provider-juju ${REGISTRY_DIR}/terraform-provider-juju_v${VERSION}
24+
@cp ${GOPATH}/bin/terraform-provider-juju ${REGISTRY_DIR}/terraform-provider-juju_v${EDGEVERSION}
2525

2626
.PHONY: simplify
2727
# Reformat and simplify source files.

0 commit comments

Comments
 (0)