Skip to content

Commit e664f5b

Browse files
author
Terraform SDK CircleCI
committed
v1.0.0 [skip ci]
1 parent 7d15008 commit e664f5b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
# 1.0.0 (Unreleased)
1+
# 1.0.0 (September 17, 2019)
22

33
This SDK is functionally equivalent to the "legacy" SDK in `hashicorp/terraform` [`v0.12.9`](https://github.com/hashicorp/terraform/blob/v0.12.9/CHANGELOG.md).
44

55
Migrating to the standalone SDK v1 is covered on the [Plugin SDK section](https://www.terraform.io/docs/extend/plugin-sdk.html) of the website.
66

77
FEATURES:
88

9-
* Add `meta` package which exposes the version of the SDK, replacing the `version` package which previously exposed the Terraform version [GH-37] [GH-24]
9+
* Add `meta` package which exposes the version of the SDK, replacing the `version` package which previously exposed the Terraform version ([#37](https://github.com/hashicorp/terraform-plugin-sdk/issues/37)] [[#24](https://github.com/hashicorp/terraform-plugin-sdk/issues/24))

meta/meta.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ var SDKVersion = "1.0.0"
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 SDKPrerelease = "dev"
19+
var SDKPrerelease = ""
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)