version: starts 0.9.6-unstable

This commit is contained in:
Victor Farazdagi 2017-04-19 08:44:06 +03:00
parent 2864c788d7
commit 1b31a5ca86
1 changed files with 4 additions and 4 deletions

View File

@ -5,10 +5,10 @@ import (
)
const (
VersionMajor = 0 // Major version component of the current release
VersionMinor = 9 // Minor version component of the current release
VersionPatch = 5 // Patch version component of the current release
VersionMeta = "stable" // Version metadata to append to the version string
VersionMajor = 0 // Major version component of the current release
VersionMinor = 9 // Minor version component of the current release
VersionPatch = 6 // Patch version component of the current release
VersionMeta = "unstable" // Version metadata to append to the version string
)
// Version exposes string representation of program version.