diff --git a/CHANGELOG.md b/CHANGELOG.md index c88539375..1ddbcf1d6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## 0.3.1 (UNRELEASED) +## 0.3.1 __BACKWARDS INCOMPATIBILITIES:__ * Service names that dont conform to RFC-1123 and RFC-2782 will fail diff --git a/version.go b/version.go index 3b8a103c6..dc52d0c00 100644 --- a/version.go +++ b/version.go @@ -10,4 +10,4 @@ const Version = "0.3.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 = "" diff --git a/website/config.rb b/website/config.rb index 7ca150fc3..0c2366db4 100644 --- a/website/config.rb +++ b/website/config.rb @@ -2,6 +2,6 @@ set :base_url, "https://www.nomadproject.io/" activate :hashicorp do |h| h.name = "nomad" - h.version = "0.3.0" + h.version = "0.3.1" h.github_slug = "hashicorp/nomad" end