Skip to content

Commit 0e43dc2

Browse files
author
clint
committed
v0.7.12
1 parent f8be22c commit 0e43dc2

File tree

3 files changed

+17
-17
lines changed

3 files changed

+17
-17
lines changed

CHANGELOG.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -33,33 +33,33 @@ BUG FIXES:
3333
* core: Maps in outputs with computed values are no longer removed. ([#9549](https://github.com/hashicorp/terraform/issues/9549))
3434
* command/fmt: Multiline comments aren't indented every fmt. ([#6524](https://github.com/hashicorp/terraform/issues/6524))
3535

36-
## 0.7.12 (Unreleased)
36+
## 0.7.12 (November 22, 2016)
3737

3838
BACKWARDS INCOMPATIBILITIES / NOTES:
3939

40-
* provider/cloudstack: `cloudstack_port_forward` has now deprecated `network_id` [GH-10204]
40+
* provider/cloudstack: `cloudstack_port_forward` has now deprecated `network_id` ([#10204](https://github.com/hashicorp/terraform/issues/10204))
4141

4242
FEATURES:
4343

44-
* *New Data Source:* `aws_alb_listener` [GH-10181]
45-
* *New Resource:* `github_label` [GH-10213]
44+
* *New Data Source:* `aws_alb_listener` ([#10181](https://github.com/hashicorp/terraform/issues/10181))
45+
* *New Resource:* `github_label` ([#10213](https://github.com/hashicorp/terraform/issues/10213))
4646

4747
IMPROVEMENTS:
4848

49-
* core: Experimental feature failures are less verbose. [GH-10276]
50-
* provider/aws: Add name_prefix to aws_iam_policy [GH-10178]
51-
* provider/aws: Add ability to select aws_prefix_list data source by name [GH-10248]
52-
* provider/aws Return service CIDR blocks from aws_vpc_endpoint resource [GH-10254]
53-
* provider/aws: Added `environment` configuration for AWS Lambda Functions [GH-10275]
49+
* core: Experimental feature failures are less verbose. ([#10276](https://github.com/hashicorp/terraform/issues/10276))
50+
* provider/aws: Add name_prefix to aws_iam_policy ([#10178](https://github.com/hashicorp/terraform/issues/10178))
51+
* provider/aws: Add ability to select aws_prefix_list data source by name ([#10248](https://github.com/hashicorp/terraform/issues/10248))
52+
* provider/aws Return service CIDR blocks from aws_vpc_endpoint resource ([#10254](https://github.com/hashicorp/terraform/issues/10254))
53+
* provider/aws: Added `environment` configuration for AWS Lambda Functions ([#10275](https://github.com/hashicorp/terraform/issues/10275))
5454

5555
BUG FIXES:
5656

57-
* core: Fix potential crashing race condition on state write [GH-10277]
58-
* core: Data sources in modules lose their `data.` prefix when moved within the state [GH-9996]
59-
* provider/aws: Fixed issue with `enable_dns_support` on creation in `aws_vpc` [GH-10171]
60-
* provider/aws: Add CertificateNotFound retry waiter to aws_alb_listener [GH-10180]
61-
* provider/aws: Remove IAM user's MFA devices with `force_destroy` [GH-10262]
62-
* provider/scaleway: improve volume attachment [GH-10084]
57+
* core: Fix potential crashing race condition on state write ([#10277](https://github.com/hashicorp/terraform/issues/10277))
58+
* core: Data sources in modules lose their `data.` prefix when moved within the state ([#9996](https://github.com/hashicorp/terraform/issues/9996))
59+
* provider/aws: Fixed issue with `enable_dns_support` on creation in `aws_vpc` ([#10171](https://github.com/hashicorp/terraform/issues/10171))
60+
* provider/aws: Add CertificateNotFound retry waiter to aws_alb_listener ([#10180](https://github.com/hashicorp/terraform/issues/10180))
61+
* provider/aws: Remove IAM user's MFA devices with `force_destroy` ([#10262](https://github.com/hashicorp/terraform/issues/10262))
62+
* provider/scaleway: improve volume attachment ([#10084](https://github.com/hashicorp/terraform/issues/10084))
6363

6464
## 0.7.11 (November 15, 2016)
6565

terraform/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const Version = "0.7.12"
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-
const VersionPrerelease = "dev"
15+
const VersionPrerelease = ""
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

website/config.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
activate :hashicorp do |h|
44
h.name = "terraform"
5-
h.version = "0.7.11"
5+
h.version = "0.7.12"
66
h.github_slug = "hashicorp/terraform"
77
end
88

0 commit comments

Comments
 (0)