Skip to content

Commit

Permalink
Relase v0.11.3
Browse files Browse the repository at this point in the history
Fix goreleaser config
  • Loading branch information
norrland committed Jun 10, 2024
1 parent 5ec5584 commit 16edc50
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Visit https://goreleaser.com for documentation on how to customize this
# behavior.

version: 2
before:
hooks:
# this is just an example and not a requirement for provider building/publishing
Expand Down Expand Up @@ -56,5 +58,3 @@ release:
name_template: '{{ .ProjectName }}_{{ .Version }}_manifest.json'
# If you want to manually examine the release before its live, uncomment this line:
# draft: true
changelog:
skip: true
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).
## Unreleased

## [0.11.3] - 2024-06-10
### Changed
- Fix goreleaser config

## [0.11.2] - 2024-06-10
### Changed
- Bump dependencies
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.2"
version = "~> 0.11.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.11.2")
client := glesys.NewClient(c.UserID, c.Token, "tf-glesys/0.11.3")

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

0 comments on commit 16edc50

Please sign in to comment.