Skip to content

Commit

Permalink
Prepare release 0.12.2 (#870)
Browse files Browse the repository at this point in the history
* Prepare release 0.12.2
  • Loading branch information
dimuon authored Dec 5, 2024
1 parent 3fa24e5 commit e1c5cad
Show file tree
Hide file tree
Showing 10 changed files with 20 additions and 7 deletions.
3 changes: 3 additions & 0 deletions .changelog/869.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:bug
provider: Remove validators.Known() for the provider endpoint.
```
3 changes: 3 additions & 0 deletions .changelog/878.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:bug
resource/deployment: Don't use nil state for a computed attribute.
```
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# 0.12.2 (December 5, 2024)

BUG FIXES:

Remove validators.Known() for the provider endpoint. ([#869](https://github.com/elastic/terraform-provider-ec/issues/869))
Don't use nil state for a computed attribute. ([#878](https://github.com/elastic/terraform-provider-ec/pull/878))

# 0.12.1 (September 27, 2024)

This release adds the schema documentation for the `ec_organization` resource. There are no changes to the provider itself.
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
SHELL := /bin/bash
export GO111MODULE ?= on
export VERSION := 0.12.1-dev
export VERSION := 0.12.2-dev
export BINARY := terraform-provider-ec
export GOBIN = $(shell pwd)/bin

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ terraform {
required_providers {
ec = {
source = "elastic/ec"
version = "0.12.1"
version = "0.12.2"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion ec/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@
package ec

// Version contains the current terraform provider version.
const Version = "0.12.1-dev"
const Version = "0.12.2-dev"
2 changes: 1 addition & 1 deletion examples/deployment_ccs/deployment.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ terraform {
required_providers {
ec = {
source = "elastic/ec"
version = "0.12.1"
version = "0.12.2"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/deployment_ec2_instance/provider.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ terraform {
required_providers {
ec = {
source = "elastic/ec"
version = "0.12.1"
version = "0.12.2"
}

aws = {
Expand Down
2 changes: 1 addition & 1 deletion examples/deployment_with_init/provider.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ terraform {
required_providers {
ec = {
source = "elastic/ec"
version = "0.12.1"
version = "0.12.2"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/extension_bundle/extension.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ terraform {
required_providers {
ec = {
source = "elastic/ec"
version = "0.12.1"
version = "0.12.2"
}
}
}
Expand Down

0 comments on commit e1c5cad

Please sign in to comment.