Update CHANGELOG

pull/919/head
Mitchell Hashimoto 12 years ago
parent 3f77b2c592
commit 7ec05423ce

@ -1,5 +1,9 @@
## 0.5.2 (unreleased)
IMPROVEMENTS:
* core: Most downloads made by Packer now use a custom user agent. [GH-803]
BUG FIXES:
* core: Fix crash case if blank parameters are given to Packer. [GH-832]

@ -39,6 +39,9 @@ func (versionCommand) Synopsis() string {
return "print Packer version"
}
// VersionString returns the Packer version in human-readable
// form complete with pre-release and git commit info if it is
// available.
func VersionString() string {
var versionString bytes.Buffer
fmt.Fprintf(&versionString, "Packer v%s", Version)

Loading…
Cancel
Save