Skip to content

Commit

Permalink
Merge pull request #303 from hmlanigan/changelog-0.9.0
Browse files Browse the repository at this point in the history
0.9.0 Change log and internals update to prep release.
  • Loading branch information
hmlanigan authored Sep 8, 2023
2 parents 10bcd60 + e2b3d74 commit 9bfccfa
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## 0.9.0 (September 7, 2023)

ENHANCEMENTS:

* Migration from the Terraform SDK to the Terraform Framework for plugins

BUG FIXES:

* Provider panics when generating plan by @hmlanigan as part of https://github.com/juju/terraform-provider-juju/pull/265

## 0.8.0 (June 13, 2023)

FEATURES:
Expand Down
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ go-install:
GOOS=$(shell go env GOOS)
GOARCH=$(shell go env GOARCH)
GOPATH=$(shell go env GOPATH)
VERSION=0.9.0
REGISTRY_DIR=~/.terraform.d/plugins/registry.terraform.io/juju/juju/${VERSION}/${GOOS}_${GOARCH}
EDGEVERSION=0.10.0
REGISTRY_DIR=~/.terraform.d/plugins/registry.terraform.io/juju/juju/${EDGEVERSION}/${GOOS}_${GOARCH}

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

.PHONY: simplify
# Reformat and simplify source files.
Expand Down

0 comments on commit 9bfccfa

Please sign in to comment.