From 57c98624053e2b75c624cf672912c48ebc64f0cb Mon Sep 17 00:00:00 2001 From: Andreas Eriksson Date: Wed, 2 Oct 2024 09:40:08 +0200 Subject: [PATCH] Release v0.13.0 --- CHANGELOG.md | 2 +- README.md | 2 +- docs/index.md | 2 +- examples/provider/provider.tf | 2 +- glesys/config.go | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ca9616e..3027e8a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). ## Unreleased -## [0.13.0] - +## [0.13.0] - 2024-10-02 ### Added ### Changed - `glesys_server_disk` - Added `Type` attribute. diff --git a/README.md b/README.md index 9be580f..ce6e0f3 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ terraform { required_providers { glesys = { source = "glesys/glesys" - # version = "0.12.0" # If you want to specify a certain release. + # version = "0.13.0" # If you want to specify a certain release. } } } diff --git a/docs/index.md b/docs/index.md index fe8432e..3574ce2 100644 --- a/docs/index.md +++ b/docs/index.md @@ -20,7 +20,7 @@ terraform { required_providers { glesys = { source = "glesys/glesys" - version = "~> 0.12.0" + version = "~> 0.13.0" } } } diff --git a/examples/provider/provider.tf b/examples/provider/provider.tf index 6ad92ae..528a4a7 100644 --- a/examples/provider/provider.tf +++ b/examples/provider/provider.tf @@ -4,7 +4,7 @@ terraform { required_providers { glesys = { source = "glesys/glesys" - version = "~> 0.12.0" + version = "~> 0.13.0" } } } diff --git a/glesys/config.go b/glesys/config.go index 8ba7bd1..57373c2 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.12.0") + client := glesys.NewClient(c.UserID, c.Token, "tf-glesys/0.13.0") err := client.SetBaseURL(c.APIEndpoint) if err != nil {