Release v1.1.0-alpha20210630
This commit is contained in:
parent
577c3653f2
commit
e291ace3eb
|
@ -2,7 +2,7 @@
|
|||
|
||||
NEW FEATURES:
|
||||
|
||||
* cli: `terraform add` generates resource configuration templates [GH-28874]
|
||||
* cli: `terraform add` generates resource configuration templates ([#28874](https://github.com/hashicorp/terraform/issues/28874))
|
||||
* config: a new `type()` function, only available in `terraform console` ([#28501](https://github.com/hashicorp/terraform/issues/28501))
|
||||
|
||||
ENHANCEMENTS:
|
||||
|
@ -11,8 +11,8 @@ ENHANCEMENTS:
|
|||
|
||||
BUG FIXES:
|
||||
|
||||
* core: Fixed an issue where provider configuration input variables were not properly merging with values in configuration [GH-29000]
|
||||
* cli: Fixed a crashing bug with some edge-cases when reporting syntax errors that happen to be reported at the position of a newline. [GH-29048]
|
||||
* core: Fixed an issue where provider configuration input variables were not properly merging with values in configuration ([#29000](https://github.com/hashicorp/terraform/issues/29000))
|
||||
* cli: Fixed a crashing bug with some edge-cases when reporting syntax errors that happen to be reported at the position of a newline. ([#29048](https://github.com/hashicorp/terraform/issues/29048))
|
||||
|
||||
## Previous Releases
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@ var Version = "1.1.0"
|
|||
// 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 Prerelease = "dev"
|
||||
var Prerelease = "alpha20210630"
|
||||
|
||||
// SemVer is an instance of version.Version. This has the secondary
|
||||
// benefit of verifying during tests and init time that our version is a
|
||||
|
|
Loading…
Reference in New Issue