Skip to content

Commit

Permalink
preparing v1.5.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
mschuchard committed Nov 17, 2024
1 parent 3347229 commit c6e5607
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
### 1.5.1 (Next)
### 1.5.1
- Refine attribute error messages.
- Coerce result of `round` function to integer.
- Do not coerce `id` of `min` and `max` functions to integer.
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ install-tfproviderlint:
@go install github.com/bflad/tfproviderlint/cmd/tfproviderlint@latest

lint: install-tfproviderlint
@~/go/bin/tfproviderlint -AT003=false -AT008=false ./...
@tfproviderlint -AT003=false -AT008=false ./...

build: tidy
@go build -o terraform-provider-stdlib
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (

func main() {
// start provider server
if err := providerserver.Serve(context.Background(), provider.New("1.5.0"), providerserver.ServeOpts{
if err := providerserver.Serve(context.Background(), provider.New("1.5.1"), providerserver.ServeOpts{
Address: "registry.terraform.io/mschuchard/stdlib",
}); err != nil {
log.Fatal(err)
Expand Down

0 comments on commit c6e5607

Please sign in to comment.