-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathversion.go
More file actions
26 lines (20 loc) · 1.03 KB
/
Copy pathversion.go
File metadata and controls
26 lines (20 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: BSD-2-Clause
// Copyright (c) 2026, Timo Pallach (timo@pallach.de).
// Package version defines version constants for the packer-plugin-sylve binary.
// These values are embedded in the Packer init lock file and reported by
// "packer plugins installed".
package version
import "github.com/hashicorp/packer-plugin-sdk/version"
var (
// Version is the semantic version of the plugin (MAJOR.MINOR.PATCH), without a "v"
// prefix. Git release tags use vX.Y.Z per HashiCorp Packer convention.
Version = "0.1.12"
// VersionPrerelease is an optional pre-release label (e.g. "dev", "beta.1").
// An empty string means this is a production release.
VersionPrerelease = ""
// VersionMetadata is optional build metadata appended to the version string.
VersionMetadata = ""
)
// PluginVersion is the Packer SDK version object constructed from the constants
// above. It is passed to plugin.Set.SetVersion during plugin registration.
var PluginVersion = version.NewPluginVersion(Version, VersionPrerelease, VersionMetadata)