Points at new release and puts tree in 0.8.0 dev mode.

This commit is contained in:
James Phillips 2017-02-06 11:08:30 -08:00
parent 1c442cb570
commit 97dbfb8b32
No known key found for this signature in database
GPG Key ID: 77183E682AC5FC11
3 changed files with 13 additions and 3 deletions

View File

@ -1,3 +1,13 @@
## 0.8.0 (UNRELEASED)
BREAKING CHANGES:
FEATURES:
IMPROVEMENTS:
BUG FIXES:
## 0.7.4 (February 6, 2017) ## 0.7.4 (February 6, 2017)
IMPROVEMENTS: IMPROVEMENTS:

View File

@ -7,10 +7,10 @@ package version
// adding new versions and pick a name that will follow "version_base.go". // adding new versions and pick a name that will follow "version_base.go".
func init() { func init() {
// The main version number that is being run at the moment. // The main version number that is being run at the moment.
Version = "0.7.4" Version = "0.8.0"
// 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"
} }

View File

@ -6,7 +6,7 @@ set :base_url, "https://www.consul.io/"
activate :hashicorp do |h| activate :hashicorp do |h|
h.name = "consul" h.name = "consul"
h.version = "0.7.3" h.version = "0.7.4"
h.github_slug = "hashicorp/consul" h.github_slug = "hashicorp/consul"
end end