Puts the tree in 0.9.0 release mode.

This commit is contained in:
James Phillips 2017-07-19 19:55:49 -07:00
parent d74390ef86
commit 859ac937a8
No known key found for this signature in database
GPG Key ID: 77183E682AC5FC11
2 changed files with 3 additions and 3 deletions

View File

@ -1,10 +1,10 @@
## 0.9.0 (UNRELEASED)
## 0.9.0 (July 20, 2017)
BREAKING CHANGES:
* agent: Added a new [`enable_script_checks`](https://www.consul.io/docs/agent/options.html#_enable_script_checks) configuration option that defaults to `false`, meaning that in order to allow an agent to run health checks that execute scripts, this will need to be configured and set to `true`. This provides a safer out-of-the-box configuration for Consul where operators must opt-in to allow script-based health checks. [GH-3087]
* api: Reworked `context` support in the API client to more closely match the Go standard library, and added context support to write requests in addition to read requests. [GH-3273, GH-2992]
* ui: Since the ui is now bundled with the application we no longer provide a separate ui package for downloading. [GH-3292]
* ui: Since the UI is now bundled with the application we no longer provide a separate UI package for downloading. [GH-3292]
FEATURES:

View File

@ -12,5 +12,5 @@ func init() {
// 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 = "rc1"
VersionPrerelease = ""
}