Skip to content

Commit 1afd18f

Browse files
arthurpitmantomazpu
authored andcommitted
feat: Improve default value of version.Version for development
1 parent 9d1a2f1 commit 1afd18f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

provider/version/version.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ import "fmt"
2424
var (
2525
// Version is a string representing the current version of the Dynatrace Terraform provider.
2626
// This should be in `major.minor.patch` format, with prereleases having an optional suffix introduced by a dash, for example, `1.2.0-beta`.
27-
Version = "(unknown-version)"
27+
// The value ~>1.0 should allow the latest 1.x version during development.
28+
Version = "~>1.0"
2829

2930
// OperatingSystem is a string representing the operating system the provider was built for.
3031
OperatingSystem = "(unknown-os)"

0 commit comments

Comments
 (0)