Up version for dev

This commit is contained in:
Mitchell Hashimoto 2014-09-08 19:36:11 -07:00
parent 7078c2f922
commit 0bf293f193
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
## 0.7.1 (unreleased)
## 0.7.0 (September 8, 2014) ## 0.7.0 (September 8, 2014)
BACKWARDS INCOMPATIBILITIES: BACKWARDS INCOMPATIBILITIES:

View File

@ -16,12 +16,12 @@ var GitCommit string
var VersionChecker VersionCheckFunc var VersionChecker VersionCheckFunc
// The version of packer. // The version of packer.
const Version = "0.7.0" const Version = "0.7.1"
// Any pre-release marker for the version. If this is "" (empty string), // Any pre-release marker for the version. If this is "" (empty string),
// then it means that it is a final release. Otherwise, this is the // then it means that it is a final release. Otherwise, this is the
// pre-release marker. // pre-release marker.
const VersionPrerelease = "" const VersionPrerelease = "dev"
// VersionCheckFunc is the callback that is called to check the latest // VersionCheckFunc is the callback that is called to check the latest
// version of Packer. // version of Packer.