Skip to content

Commit

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

## [0.13.0] -
## [0.13.0] - 2024-10-02
### Added
### Changed
- `glesys_server_disk` - Added `Type` attribute.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ terraform {
required_providers {
glesys = {
source = "glesys/glesys"
# version = "0.12.0" # If you want to specify a certain release.
# version = "0.13.0" # If you want to specify a certain release.
}
}
}
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.12.0"
version = "~> 0.13.0"
}
}
}
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.12.0"
version = "~> 0.13.0"
}
}
}
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.12.0")
client := glesys.NewClient(c.UserID, c.Token, "tf-glesys/0.13.0")

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

0 comments on commit 57c9862

Please sign in to comment.