Skip to content

Commit

Permalink
v0.10.4
Browse files Browse the repository at this point in the history
  • Loading branch information
jbardin committed Sep 6, 2017
1 parent 7360cf4 commit 10df48e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
## 0.10.4 (Unreleased)
## 0.10.4 (September 6, 2017)

IMPROVEMENTS:
* `terraform apply` now uses the standard resource address syntax to refer to resources in its log [GH-15884]
* `terraform plan` output has some minor adjustments to improve readability and accessibility for those who can't see its colors [GH-15884]
* `terraform apply` now uses the standard resource address syntax to refer to resources in its log ([#15884](https://github.com/hashicorp/terraform/issues/15884))
* `terraform plan` output has some minor adjustments to improve readability and accessibility for those who can't see its colors ([#15884](https://github.com/hashicorp/terraform/issues/15884))

BUG FIXES:

* backend/consul: fix crash during consul backend initialization [GH-15976]
* backend/azurerm: ensure that blob storage metadata is preserved when updating state blobs, to avoid losing track of lock metadata [GH-16015]
* config: local values now work properly in resource `count` and in modules with more than one `.tf` file [GH-15995] [GH-15982]
* cli: removed some inconsistencies in how data sources are counted and tallied in plan vs. apply and apply vs. destroy. In particular, data sources are no longer incorrectly counted as destroyed in `terraform destroy` [GH-15884]
* backend/consul: fix crash during consul backend initialization ([#15976](https://github.com/hashicorp/terraform/issues/15976))
* backend/azurerm: ensure that blob storage metadata is preserved when updating state blobs, to avoid losing track of lock metadata ([#16015](https://github.com/hashicorp/terraform/issues/16015))
* config: local values now work properly in resource `count` and in modules with more than one `.tf` file ([#15995](https://github.com/hashicorp/terraform/issues/15995)] [[#15982](https://github.com/hashicorp/terraform/issues/15982))
* cli: removed some inconsistencies in how data sources are counted and tallied in plan vs. apply and apply vs. destroy. In particular, data sources are no longer incorrectly counted as destroyed in `terraform destroy` ([#15884](https://github.com/hashicorp/terraform/issues/15884))

## 0.10.3 (August 30, 2017)

Expand Down
2 changes: 1 addition & 1 deletion terraform/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const Version = "0.10.4"
// A pre-release marker for the version. If this is "" (empty string)
// then it means that it is a final release. Otherwise, this is a pre-release
// such as "dev" (in development), "beta", "rc1", etc.
var VersionPrerelease = "dev"
var VersionPrerelease = ""

// SemVersion is an instance of version.Version. This has the secondary
// benefit of verifying during tests and init time that our version is a
Expand Down

0 comments on commit 10df48e

Please sign in to comment.