Bump to version 0.3.2

main
nleiva 2023-03-27 13:33:14 -04:00
parent a6fcce4731
commit fd948745d3
4 changed files with 7 additions and 7 deletions

View File

@ -26,9 +26,9 @@ jobs:
run: git fetch --prune --unshallow run: git fetch --prune --unshallow
- -
name: Set up Go name: Set up Go
uses: actions/setup-go@v3 uses: actions/setup-go@v4
with: with:
go-version: 1.17 go-version: '>=1.19.0'
- -
name: Import GPG key name: Import GPG key
id: import_gpg id: import_gpg
@ -43,7 +43,7 @@ jobs:
uses: goreleaser/goreleaser-action@v4.2.0 uses: goreleaser/goreleaser-action@v4.2.0
with: with:
version: latest version: latest
args: release --rm-dist args: release --clean
env: env:
GPG_FINGERPRINT: ${{ steps.import_gpg.outputs.fingerprint }} GPG_FINGERPRINT: ${{ steps.import_gpg.outputs.fingerprint }}
GITHUB_TOKEN: ${{ secrets.GH_PAT }} GITHUB_TOKEN: ${{ secrets.GH_PAT }}

View File

@ -3,7 +3,7 @@ HOSTNAME=github.com
NAMESPACE=nleiva NAMESPACE=nleiva
NAME=nautobot NAME=nautobot
BINARY=terraform-provider-${NAME} BINARY=terraform-provider-${NAME}
VERSION=0.3.1 VERSION=0.3.2
OS_ARCH=$(shell go env GOOS)_$(shell go env GOARCH) OS_ARCH=$(shell go env GOOS)_$(shell go env GOARCH)

View File

@ -5,7 +5,7 @@ Nautobot provider created for educational purposes. You can fork it for long-ter
## Requirements ## Requirements
- [Terraform](https://www.terraform.io/downloads.html) >= 0.13.x - [Terraform](https://www.terraform.io/downloads.html) >= 0.13.x
- [Go](https://golang.org/doc/install) >= 1.17 - [Go](https://golang.org/doc/install) >= 1.19
## Building The Provider ## Building The Provider
@ -40,7 +40,7 @@ The provide takes two arguments, `url` and `token`. For the data sources and res
terraform { terraform {
required_providers { required_providers {
nautobot = { nautobot = {
version = "0.3.1" version = "0.3.2"
source = "nleiva/nautobot" source = "nleiva/nautobot"
} }
} }

View File

@ -1,7 +1,7 @@
terraform { terraform {
required_providers { required_providers {
nautobot = { nautobot = {
version = "0.3.1" version = "0.3.2"
source = "github.com/nleiva/nautobot" source = "github.com/nleiva/nautobot"
} }
} }