diff --git a/.go-version b/.go-version index 15b989e3..84cc5294 100644 --- a/.go-version +++ b/.go-version @@ -1 +1 @@ -1.16.0 +1.18.0 diff --git a/Makefile b/Makefile index 5573c0df..33bcc55f 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,8 @@ GOFMT_FILES?=$$(find . -name '*.go' | grep -v vendor) -NAME=$$(grep TerraformProviderName proxmoxtf/version.go | grep -o -e 'terraform-provider-[a-z]*') +NAME=terraform-provider-proxmox TARGETS=darwin linux windows TERRAFORM_PLUGIN_EXTENSION= -VERSION=$$(grep TerraformProviderVersion proxmoxtf/version.go | grep -o -e '[0-9]\.[0-9]\.[0-9]') +VERSION=0.6.2 # x-release-please-version VERSION_EXAMPLE=9999.0.0 ifeq ($(OS),Windows_NT) diff --git a/proxmoxtf/version.go b/proxmoxtf/version.go deleted file mode 100644 index 80dee481..00000000 --- a/proxmoxtf/version.go +++ /dev/null @@ -1,14 +0,0 @@ -/* This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ - -package proxmoxtf - -//goland:noinspection ALL -const ( - // TerraformProviderName specifies the full name of this provider. - TerraformProviderName = "terraform-provider-proxmox" - - // TerraformProviderVersion specifies the version number. - TerraformProviderVersion = "0.6.3" -)