diff --git a/CHANGELOG.md b/CHANGELOG.md index 1ed920dff3..2de99aa785 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## 0.5.1 (Unreleased) +## 0.5.1 (February 25th, 2016) DEPRECATIONS/BREAKING CHANGES: @@ -54,7 +54,7 @@ BUG FIXES: respond with a 400 rather than a 500 [GH-1085] * secret/postgresql: Add extra revocation statements to better handle more permission scenarios [GH-1053] - * secret/postgresql: Make connection_url properly [GH-1112] + * secret/postgresql: Make connection_url work properly [GH-1112] ## 0.5.0 (February 10, 2016) diff --git a/version/version.go b/version/version.go index 78b444774a..d1181dbbaf 100644 --- a/version/version.go +++ b/version/version.go @@ -15,7 +15,7 @@ const Version = "0.5.1" // 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. -const VersionPrerelease = "dev" +const VersionPrerelease = "" // VersionInfo type VersionInfo struct {