Skip to content

Commit

Permalink
Release v0.11.2
Browse files Browse the repository at this point in the history
  • Loading branch information
norrland committed Jun 10, 2024
1 parent 294b642 commit 5ec5584
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).
## Unreleased

## [0.11.2] - 2024-06-10
### Changed
- Bump dependencies

## [0.11.1] - 2024-03-08
### Changed
- Fix possible race condition when creating multiple `glesys_ip` resources.
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.11.1"
version = "~> 0.11.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.11.1"
version = "~> 0.11.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.11.1")
client := glesys.NewClient(c.UserID, c.Token, "tf-glesys/0.11.2")

err := client.SetBaseURL(c.APIEndpoint)
if err != nil {
Expand Down

0 comments on commit 5ec5584

Please sign in to comment.