diff --git a/CHANGELOG.md b/CHANGELOG.md index 84410a0313d..6c7a2c8f7b3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## 0.10.1 (Unreleased) +## 0.10.2 (Unreleased) IMPROVEMENTS: * client: Enable setting tags on Consul Connect sidecar service @@ -6,6 +6,17 @@ IMPROVEMENTS: BUG FIXES: * cli: Make scoring column orders consistent `nomad alloc status` [[GH-6609](https://github.com/hashicorp/nomad/issues/6609)] + +## 0.10.1 (November 4, 2019) + +BUG FIXES: + + * core: Fixed server panic when upgrading from 0.8 -> 0.10 and performing an + inplace update of an allocation. [[GH-6541](https://github.com/hashicorp/nomad/issues/6541)] + * api: Fixed panic when submitting Connect-enabled job without using a bridge + network [[GH-6575](https://github.com/hashicorp/nomad/issues/6575)] + * client: Fixed client panic when upgrading from 0.8 -> 0.10 and performing an + inplace update of an allocation. [[GH-6605](https://github.com/hashicorp/nomad/issues/6605)] ## 0.10.0 (October 22, 2019) diff --git a/version/version.go b/version/version.go index d9bc0a388e4..782ad77aa78 100644 --- a/version/version.go +++ b/version/version.go @@ -11,7 +11,7 @@ var ( GitDescribe string // The main version number that is being run at the moment. - Version = "0.10.1" + Version = "0.10.2" // 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