Skip to content

Commit

Permalink
Release v0.12.0
Browse files Browse the repository at this point in the history
- `glesys_privatenetwork` - Manage PrivateNetwork resources.
- `glesys_privatenetwork_segment` - Manage PrivateNetwork segments.

- `glesys_networkadapter` - Added Importer function.
- `glesys_server` - `networkadapter` attribute listing attached NICS.
  • Loading branch information
norrland committed Sep 23, 2024
1 parent 8404524 commit 16f9850
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 8 deletions.
9 changes: 6 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,16 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).
## Unreleased
## [0.11.4] -

## [0.12.0] -
### Added
- `glesys_server` - `networkadapter` attribute listing attached NICS.
- `glesys_networkadapter` - Added Importer function.
- `glesys_privatenetwork` - Manage PrivateNetwork resources.
- `glesys_privatenetwork_segment` - Manage PrivateNetwork segments.

### Changed
- `glesys_networkadapter` - Added Importer function.
- `glesys_server` - `networkadapter` attribute listing attached NICS.

## [0.11.3] - 2024-06-10
### Changed
- Fix goreleaser config
Expand Down
4 changes: 2 additions & 2 deletions 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.5.0" # If you want to specify a certain release.
# version = "0.12.0" # If you want to specify a certain release.
}
}
}
Expand All @@ -38,7 +38,7 @@ Use environment variables for example.
## Local development
### Debian requirements

- golang >= 1.15
- golang >= 1.22
- git
- make
- terraform # Fetch the latest version from https://www.terraform.io/downloads
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.2"
version = "~> 0.12.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.11.3"
version = "~> 0.12.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.11.3")
client := glesys.NewClient(c.UserID, c.Token, "tf-glesys/0.12.0")

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

0 comments on commit 16f9850

Please sign in to comment.