Skip to content

Commit

Permalink
Release 0.10.2
Browse files Browse the repository at this point in the history
  • Loading branch information
norrland committed Dec 19, 2023
1 parent 1f26441 commit 538a3b3
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ terraform {
required_providers {
glesys = {
source = "glesys/glesys"
version = "~> 0.10.1"
version = "~> 0.10.2"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/provider/provider.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ terraform {
required_providers {
glesys = {
source = "glesys/glesys"
version = "~> 0.10.1"
version = "~> 0.10.2"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion glesys/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 538a3b3

Please sign in to comment.