From b60a7efd9e443e1092a3b7d3f26637bc831600d7 Mon Sep 17 00:00:00 2001 From: Andreas Eriksson Date: Thu, 6 Feb 2025 09:28:23 +0100 Subject: [PATCH] Release v0.14.2 Dependency updates. Bump version number in user-agent. --- CHANGELOG.md | 5 +++++ README.md | 2 +- docs/index.md | 2 +- examples/provider/provider.tf | 2 +- glesys/config.go | 2 +- 5 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b2ef9a2..bfc1eb6 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.2] - 2025-02-06 +### Added +### Changed +- Bump dependencies + ## [0.14.1] - 2024-12-12 ### Added ### Changed diff --git a/README.md b/README.md index 16f194e..513c8ba 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ terraform { required_providers { glesys = { source = "glesys/glesys" - # version = "0.14.1" # If you want to specify a certain release. + # version = "0.14.2" # If you want to specify a certain release. } } } diff --git a/docs/index.md b/docs/index.md index f1a3129..4e84496 100644 --- a/docs/index.md +++ b/docs/index.md @@ -20,7 +20,7 @@ terraform { required_providers { glesys = { source = "glesys/glesys" - version = "~> 0.14.1" + version = "~> 0.14.2" } } } diff --git a/examples/provider/provider.tf b/examples/provider/provider.tf index 1bc9a58..1ad467d 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.1" + version = "~> 0.14.2" } } } diff --git a/glesys/config.go b/glesys/config.go index a2d4a24..53b39c6 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.1") + client := glesys.NewClient(c.UserID, c.Token, "tf-glesys/0.14.2") err := client.SetBaseURL(c.APIEndpoint) if err != nil {