diff --git a/CHANGELOG.md b/CHANGELOG.md index 160acef..b2ef9a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). ## Unreleased +## [0.14.1] - 2024-12-12 +### Added +### Changed +- Bump dependency x/crypto + ## [0.14.0] - 2024-11-06 ### Added ### Changed diff --git a/README.md b/README.md index 4e1e73a..16f194e 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ terraform { required_providers { glesys = { source = "glesys/glesys" - # version = "0.14.0" # If you want to specify a certain release. + # version = "0.14.1" # If you want to specify a certain release. } } } diff --git a/docs/index.md b/docs/index.md index 28588b2..f1a3129 100644 --- a/docs/index.md +++ b/docs/index.md @@ -20,7 +20,7 @@ terraform { required_providers { glesys = { source = "glesys/glesys" - version = "~> 0.14.0" + version = "~> 0.14.1" } } } diff --git a/examples/provider/provider.tf b/examples/provider/provider.tf index 28bba90..1bc9a58 100644 --- a/examples/provider/provider.tf +++ b/examples/provider/provider.tf @@ -4,7 +4,7 @@ terraform { required_providers { glesys = { source = "glesys/glesys" - version = "~> 0.14.0" + version = "~> 0.14.1" } } } diff --git a/glesys/config.go b/glesys/config.go index f360ac9..a2d4a24 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.14.0") + client := glesys.NewClient(c.UserID, c.Token, "tf-glesys/0.14.1") err := client.SetBaseURL(c.APIEndpoint) if err != nil {