Skip to content

Commit

Permalink
Release v0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
norrland committed Nov 23, 2023
1 parent 8d9277f commit 027ad5a
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,20 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).
## Unreleased

## [0.10.0] - 2023-11-23
### Changed
- Update docs for network resources.
- Update docs for networkadapter resources.
- `glesys_emailaccount` API no longer accept user defined passwords.
- `glesys_loadbalancer_target` requires `targetip` attribute.
- Fix links to API documentation (@stemid)
- Bump glesys-go to v8

### Added
- Add `glesys_emailalias`
- Add docs for `glesys_objectstorage_*`
- Add docs for `glesys_ip`

## [0.9.0] - 2023-05-03
### Changed
- Update context in API calls.
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.8.0")
client := glesys.NewClient(c.UserID, c.Token, "tf-glesys/0.10.0")

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

0 comments on commit 027ad5a

Please sign in to comment.