Skip to content

Commit

Permalink
Relase 0.10.3
Browse files Browse the repository at this point in the history
* Security update for cloudflare/circl dependency
* Update to terraform-plugin-sdk/v2
  • Loading branch information
norrland committed Jan 9, 2024
1 parent 46f4e96 commit 00848fc
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.3] - 2024-01-09
### Changed
- Update dependencies with high vulnerability rating
- Update terraform-plugin-sdk/v2 dependency

## [0.10.2] - 2023-12-19
### Changed
- Update github actions dependencies
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.2"
version = "~> 0.10.3"
}
}
}
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.2"
version = "~> 0.10.3"
}
}
}
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.2")
client := glesys.NewClient(c.UserID, c.Token, "tf-glesys/0.10.3")

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

0 comments on commit 00848fc

Please sign in to comment.