From 538a3b33cfb244eb4c6840c1d0429bc1e23ab8b4 Mon Sep 17 00:00:00 2001 From: Andreas Eriksson Date: Tue, 19 Dec 2023 08:27:48 +0100 Subject: [PATCH] Release 0.10.2 --- CHANGELOG.md | 5 +++++ docs/index.md | 2 +- examples/provider/provider.tf | 2 +- glesys/config.go | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f818e71..890c9a6 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.10.2] - 2023-12-19 +### Changed +- Update github actions dependencies +- Update golang.org/x/crypto dependencies + ## [0.10.1] - 2023-11-23 ### Changed - Updated the minimum go version to 1.20 diff --git a/docs/index.md b/docs/index.md index 3f455d9..60f24e8 100644 --- a/docs/index.md +++ b/docs/index.md @@ -20,7 +20,7 @@ terraform { required_providers { glesys = { source = "glesys/glesys" - version = "~> 0.10.1" + version = "~> 0.10.2" } } } diff --git a/examples/provider/provider.tf b/examples/provider/provider.tf index 0bc8aba..e7dff7f 100644 --- a/examples/provider/provider.tf +++ b/examples/provider/provider.tf @@ -4,7 +4,7 @@ terraform { required_providers { glesys = { source = "glesys/glesys" - version = "~> 0.10.1" + version = "~> 0.10.2" } } } diff --git a/glesys/config.go b/glesys/config.go index 02360dd..d24bb22 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.10.1") + client := glesys.NewClient(c.UserID, c.Token, "tf-glesys/0.10.2") err := client.SetBaseURL(c.APIEndpoint) if err != nil {