Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v0.12.0 #205

Merged
merged 1 commit into from
Sep 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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