Skip to content

Commit a26ff83

Browse files
v0.10.0-beta1
1 parent 77cbd3b commit a26ff83

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

CHANGELOG.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 0.10.0-beta1 (Unreleased)
1+
## 0.10.0-beta1 (June 22, 2017)
22

33
BACKWARDS INCOMPATIBILITIES / NOTES:
44

@@ -21,18 +21,18 @@ BACKWARDS INCOMPATIBILITIES / NOTES:
2121

2222
IMPROVEMENTS:
2323

24-
* Providers no longer in the main Terraform distribution; installed automatically by init instead [GH-15208]
25-
* cli: `terraform env` command renamed to `terraform workspace` [GH-14952]
24+
* Providers no longer in the main Terraform distribution; installed automatically by init instead ([#15208](https://github.com/hashicorp/terraform/issues/15208))
25+
* cli: `terraform env` command renamed to `terraform workspace` ([#14952](https://github.com/hashicorp/terraform/issues/14952))
2626
* cli: `terraform init` command now has `-upgrade` option to download the latest versions (within specified constraints) of modules and provider plugins.
27-
* cli: The `-target` option to various Terraform operation can now target resources in descendent modules. [GH-15314]
28-
* cli: Minor updates to `terraform plan` output: use standard resource address syntax, more visually-distinct `-/+` actions, and more [GH-15362]
29-
* config: New interpolation function `contains`, to find if a given string exists in a list of strings. [GH-15322]
27+
* cli: The `-target` option to various Terraform operation can now target resources in descendent modules. ([#15314](https://github.com/hashicorp/terraform/issues/15314))
28+
* cli: Minor updates to `terraform plan` output: use standard resource address syntax, more visually-distinct `-/+` actions, and more ([#15362](https://github.com/hashicorp/terraform/issues/15362))
29+
* config: New interpolation function `contains`, to find if a given string exists in a list of strings. ([#15322](https://github.com/hashicorp/terraform/issues/15322))
3030

3131
BUG FIXES:
3232

33-
* config: Interpolation function `cidrhost` was not correctly calcluating host addresses under IPv6 CIDR prefixes [GH-15321]
34-
* provisioner/chef: Prevent a panic while trying to read the connection info [GH-15271]
35-
* provisioner/file: Refactor the provisioner validation function to prevent false positives [GH-15273]
33+
* config: Interpolation function `cidrhost` was not correctly calcluating host addresses under IPv6 CIDR prefixes ([#15321](https://github.com/hashicorp/terraform/issues/15321))
34+
* provisioner/chef: Prevent a panic while trying to read the connection info ([#15271](https://github.com/hashicorp/terraform/issues/15271))
35+
* provisioner/file: Refactor the provisioner validation function to prevent false positives ([#15273](https://github.com/hashicorp/terraform/issues/15273))
3636

3737
## 0.9.8 (June 7, 2017)
3838

terraform/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const Version = "0.10.0"
1212
// A pre-release marker for the version. If this is "" (empty string)
1313
// then it means that it is a final release. Otherwise, this is a pre-release
1414
// such as "dev" (in development), "beta", "rc1", etc.
15-
var VersionPrerelease = "dev"
15+
var VersionPrerelease = "beta1"
1616

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

0 commit comments

Comments
 (0)