diff --git a/CHANGELOG.md b/CHANGELOG.md index cc32326..27e5a2d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). ## Unreleased +## [0.11.2] - 2024-06-10 +### Changed +- Bump dependencies + ## [0.11.1] - 2024-03-08 ### Changed - Fix possible race condition when creating multiple `glesys_ip` resources. diff --git a/docs/index.md b/docs/index.md index 18b5b1f..1e5773d 100644 --- a/docs/index.md +++ b/docs/index.md @@ -20,7 +20,7 @@ terraform { required_providers { glesys = { source = "glesys/glesys" - version = "~> 0.11.1" + version = "~> 0.11.2" } } } diff --git a/examples/provider/provider.tf b/examples/provider/provider.tf index 5f6d548..5fef131 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.1" + version = "~> 0.11.2" } } } diff --git a/glesys/config.go b/glesys/config.go index 310310e..a84fef6 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.1") + client := glesys.NewClient(c.UserID, c.Token, "tf-glesys/0.11.2") err := client.SetBaseURL(c.APIEndpoint) if err != nil {