Puts the tree back into dev mode

pull/3884/head
Kyle Havlovitz 2018-02-09 10:25:58 -08:00
parent 707c5c7204
commit 7acc1d6dbc
No known key found for this signature in database
GPG Key ID: 8A5E6B173056AD6C
2 changed files with 6 additions and 3 deletions

View File

@ -1,4 +1,7 @@
## 1.0.6 (February 9, 2018) ## ## (UNRELEASED)
## 1.0.6 (February 9, 2018)
BUG FIXES: BUG FIXES:

View File

@ -15,12 +15,12 @@ var (
// //
// Version must conform to the format expected by github.com/hashicorp/go-version // Version must conform to the format expected by github.com/hashicorp/go-version
// for tests to work. // for tests to work.
Version = "1.0.6" Version = "1.0.7"
// A pre-release marker for the version. If this is "" (empty string) // A pre-release marker for the version. If this is "" (empty string)
// then it means that it is a final release. Otherwise, this is a pre-release // then it means that it is a final release. Otherwise, this is a pre-release
// such as "dev" (in development), "beta", "rc1", etc. // such as "dev" (in development), "beta", "rc1", etc.
VersionPrerelease = "" VersionPrerelease = "dev"
) )
// GetHumanVersion composes the parts of the version in a way that's suitable // GetHumanVersion composes the parts of the version in a way that's suitable