diff --git a/CHANGELOG.md b/CHANGELOG.md index 3027e8a..160acef 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.0] - 2024-11-06 +### Added +### Changed +- Support for KVM backups_schedules in `glesys_server` + ## [0.13.0] - 2024-10-02 ### Added ### Changed diff --git a/README.md b/README.md index ce6e0f3..4e1e73a 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ terraform { required_providers { glesys = { source = "glesys/glesys" - # version = "0.13.0" # If you want to specify a certain release. + # version = "0.14.0" # If you want to specify a certain release. } } } diff --git a/docs/index.md b/docs/index.md index 3574ce2..28588b2 100644 --- a/docs/index.md +++ b/docs/index.md @@ -20,7 +20,7 @@ terraform { required_providers { glesys = { source = "glesys/glesys" - version = "~> 0.13.0" + version = "~> 0.14.0" } } } diff --git a/examples/provider/provider.tf b/examples/provider/provider.tf index 528a4a7..28bba90 100644 --- a/examples/provider/provider.tf +++ b/examples/provider/provider.tf @@ -4,7 +4,7 @@ terraform { required_providers { glesys = { source = "glesys/glesys" - version = "~> 0.13.0" + version = "~> 0.14.0" } } } diff --git a/glesys/config.go b/glesys/config.go index 57373c2..f360ac9 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.13.0") + client := glesys.NewClient(c.UserID, c.Token, "tf-glesys/0.14.0") err := client.SetBaseURL(c.APIEndpoint) if err != nil {