diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ab48da..cc32326 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). ## Unreleased +## [0.11.1] - 2024-03-08 +### Changed +- Fix possible race condition when creating multiple `glesys_ip` resources. +- Remove OpenVZ examples +- Bump github.com/hashicorp/terraform-plugin-sdk/v2 from 2.32.0 to 2.33.0 +- Bump go version in tests + ## [0.11.0] - 2024-01-24 ### Added - Resource `glesys_server_disk` for managing extra disks in the VMware platform. diff --git a/docs/index.md b/docs/index.md index 0b3c249..18b5b1f 100644 --- a/docs/index.md +++ b/docs/index.md @@ -20,7 +20,7 @@ terraform { required_providers { glesys = { source = "glesys/glesys" - version = "~> 0.11.0" + version = "~> 0.11.1" } } } diff --git a/examples/provider/provider.tf b/examples/provider/provider.tf index dfff585..5f6d548 100644 --- a/examples/provider/provider.tf +++ b/examples/provider/provider.tf @@ -4,7 +4,7 @@ terraform { required_providers { glesys = { source = "glesys/glesys" - version = "~> 0.11.0" + version = "~> 0.11.1" } } } diff --git a/glesys/config.go b/glesys/config.go index 790e709..310310e 100644 --- a/glesys/config.go +++ b/glesys/config.go @@ -14,7 +14,7 @@ type Config struct { // Client - Setup new glesys client func (c *Config) Client() (*glesys.Client, error) { - client := glesys.NewClient(c.UserID, c.Token, "tf-glesys/0.11.0") + client := glesys.NewClient(c.UserID, c.Token, "tf-glesys/0.11.1") err := client.SetBaseURL(c.APIEndpoint) if err != nil {