Skip to content

Commit e1c5cad

Browse files
authored
Prepare release 0.12.2 (#870)
* Prepare release 0.12.2
1 parent 3fa24e5 commit e1c5cad

File tree

10 files changed

+20
-7
lines changed

10 files changed

+20
-7
lines changed

.changelog/869.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
```release-note:bug
2+
provider: Remove validators.Known() for the provider endpoint.
3+
```

.changelog/878.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
```release-note:bug
2+
resource/deployment: Don't use nil state for a computed attribute.
3+
```

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# 0.12.2 (December 5, 2024)
2+
3+
BUG FIXES:
4+
5+
Remove validators.Known() for the provider endpoint. ([#869](https://github.com/elastic/terraform-provider-ec/issues/869))
6+
Don't use nil state for a computed attribute. ([#878](https://github.com/elastic/terraform-provider-ec/pull/878))
7+
18
# 0.12.1 (September 27, 2024)
29

310
This release adds the schema documentation for the `ec_organization` resource. There are no changes to the provider itself.

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
SHELL := /bin/bash
22
export GO111MODULE ?= on
3-
export VERSION := 0.12.1-dev
3+
export VERSION := 0.12.2-dev
44
export BINARY := terraform-provider-ec
55
export GOBIN = $(shell pwd)/bin
66

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ terraform {
4747
required_providers {
4848
ec = {
4949
source = "elastic/ec"
50-
version = "0.12.1"
50+
version = "0.12.2"
5151
}
5252
}
5353
}

ec/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818
package ec
1919

2020
// Version contains the current terraform provider version.
21-
const Version = "0.12.1-dev"
21+
const Version = "0.12.2-dev"

examples/deployment_ccs/deployment.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
required_providers {
55
ec = {
66
source = "elastic/ec"
7-
version = "0.12.1"
7+
version = "0.12.2"
88
}
99
}
1010
}

examples/deployment_ec2_instance/provider.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
required_providers {
55
ec = {
66
source = "elastic/ec"
7-
version = "0.12.1"
7+
version = "0.12.2"
88
}
99

1010
aws = {

examples/deployment_with_init/provider.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
required_providers {
55
ec = {
66
source = "elastic/ec"
7-
version = "0.12.1"
7+
version = "0.12.2"
88
}
99
}
1010
}

examples/extension_bundle/extension.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
required_providers {
55
ec = {
66
source = "elastic/ec"
7-
version = "0.12.1"
7+
version = "0.12.2"
88
}
99
}
1010
}

0 commit comments

Comments
 (0)