0
0
mirror of https://github.com/bpg/terraform-provider-proxmox.git synced 2025-06-30 02:31:10 +00:00

chore: use automatic versioning in Makefile

Closes: #132
This commit is contained in:
Pavel Boldyrev 2022-10-16 21:38:36 -04:00
parent dc0de5faaf
commit 7145061bb3
No known key found for this signature in database
GPG Key ID: 02A24794ADAC7455
3 changed files with 3 additions and 17 deletions

View File

@ -1 +1 @@
1.16.0
1.18.0

View File

@ -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)

View File

@ -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"
)