File tree Expand file tree Collapse file tree 2 files changed +15
-5
lines changed Expand file tree Collapse file tree 2 files changed +15
-5
lines changed Original file line number Diff line number Diff line change
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
+
1
11
## 0.8.0 (June 13, 2023)
2
12
3
13
FEATURES:
Original file line number Diff line number Diff line change @@ -13,15 +13,15 @@ go-install:
13
13
GOOS =$(shell go env GOOS)
14
14
GOARCH =$(shell go env GOARCH)
15
15
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}
18
18
19
19
.PHONY : install
20
20
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}"
23
23
@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 }
25
25
26
26
.PHONY : simplify
27
27
# Reformat and simplify source files.
You can’t perform that action at this time.
0 commit comments