This commit is contained in:
Martin Atkins 2017-04-12 20:21:42 +00:00
parent f5ed62e5b8
commit 1601af7a07
No known key found for this signature in database
GPG Key ID: 51852D87348FFC4C
3 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
## 0.9.3 (unreleased)
## 0.9.3 (April 12, 2017)
BACKWARDS INCOMPATIBILITIES / NOTES:
* provider/aws: Fix a critical bug in `aws_emr_cluster` in order to preserve the ordering

View File

@ -12,7 +12,7 @@ const Version = "0.9.3"
// 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.
const VersionPrerelease = "dev"
const 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

View File

@ -2,7 +2,7 @@ set :base_url, "https://www.terraform.io/"
activate :hashicorp do |h|
h.name = "terraform"
h.version = "0.9.2"
h.version = "0.9.3"
h.github_slug = "hashicorp/terraform"
end