mirror of https://github.com/status-im/consul.git
Points at new release and puts tree in 0.8.0 dev mode.
This commit is contained in:
parent
1c442cb570
commit
97dbfb8b32
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -1,3 +1,13 @@
|
|||
## 0.8.0 (UNRELEASED)
|
||||
|
||||
BREAKING CHANGES:
|
||||
|
||||
FEATURES:
|
||||
|
||||
IMPROVEMENTS:
|
||||
|
||||
BUG FIXES:
|
||||
|
||||
## 0.7.4 (February 6, 2017)
|
||||
|
||||
IMPROVEMENTS:
|
||||
|
|
|
@ -7,10 +7,10 @@ package version
|
|||
// adding new versions and pick a name that will follow "version_base.go".
|
||||
func init() {
|
||||
// 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)
|
||||
// then it means that it is a final release. Otherwise, this is a pre-release
|
||||
// such as "dev" (in development), "beta", "rc1", etc.
|
||||
VersionPrerelease = ""
|
||||
VersionPrerelease = "dev"
|
||||
}
|
||||
|
|
|
@ -6,7 +6,7 @@ set :base_url, "https://www.consul.io/"
|
|||
|
||||
activate :hashicorp do |h|
|
||||
h.name = "consul"
|
||||
h.version = "0.7.3"
|
||||
h.version = "0.7.4"
|
||||
h.github_slug = "hashicorp/consul"
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in New Issue