Skip to content

Commit 12c3170

Browse files
author
Pam Selle
committed
v0.12.1
1 parent bf661d5 commit 12c3170

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

CHANGELOG.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
## 0.12.1 (Unreleased)
1+
## 0.12.1 (June 3, 2019)
22

33
BUG FIXES:
44

5-
* core: Always try to select a workspace after initialization [GH-21234]
6-
* command/show: fix inconsistent json output causing a panic [GH-21541]
7-
* config: `distinct` function no longer panics when given an empty list [GH-21538]
8-
* config: Don't panic when a `version` constraint is added to a module that was previously initialized without one [GH-21542]
9-
* config: `matchkeys` function argument type checking will no longer fail incorrectly during validation [GH-21576]
10-
* backend/local: Don't panic if an instance in the state only has deposed instances, and no current instance [GH-21575]
5+
* core: Always try to select a workspace after initialization ([#21234](https://github.com/hashicorp/terraform/issues/21234))
6+
* command/show: fix inconsistent json output causing a panic [[#21541](https://github.com/hashicorp/terraform/issues/21541)]
7+
* config: `distinct` function no longer panics when given an empty list ([#21538](https://github.com/hashicorp/terraform/issues/21538))
8+
* config: Don't panic when a `version` constraint is added to a module that was previously initialized without one ([#21542](https://github.com/hashicorp/terraform/issues/21542))
9+
* config: `matchkeys` function argument type checking will no longer fail incorrectly during validation ([#21576](https://github.com/hashicorp/terraform/issues/21576))
10+
* backend/local: Don't panic if an instance in the state only has deposed instances, and no current instance ([#21575](https://github.com/hashicorp/terraform/issues/21575))
1111

1212
## 0.12.0 (May 22, 2019)
1313

version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ var Version = "0.12.1"
1616
// A pre-release marker for the version. If this is "" (empty string)
1717
// then it means that it is a final release. Otherwise, this is a pre-release
1818
// such as "dev" (in development), "beta", "rc1", etc.
19-
var Prerelease = "dev"
19+
var Prerelease = ""
2020

2121
// SemVer is an instance of version.Version. This has the secondary
2222
// benefit of verifying during tests and init time that our version is a

0 commit comments

Comments
 (0)