forked from hashicorp/terraform-ls
-
Notifications
You must be signed in to change notification settings - Fork 0
/
version.go
29 lines (23 loc) · 859 Bytes
/
version.go
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
27
28
29
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
package main
import (
_ "embed"
"strings"
goversion "github.com/hashicorp/go-version"
)
var (
// The next version number that will be released. This will be updated after every release
// Version must conform to the format expected by github.com/hashicorp/go-version
// for tests to work.
// A pre-release marker for the version can also be specified (e.g -dev). If this is omitted
// then it means that it is a final release. Otherwise, this is a pre-release
// such as "dev" (in development), "beta", "rc1", etc.
//go:embed version/VERSION
rawVersion string
version = goversion.Must(goversion.NewVersion(strings.TrimSpace(rawVersion)))
)
// VersionString returns the complete version string, including prerelease
func VersionString() string {
return version.String()
}