From 27cf675abacdea51706f78d3f6bfe2d80ee6f88e Mon Sep 17 00:00:00 2001 From: Dong Chen Date: Tue, 22 Mar 2016 15:57:55 -0700 Subject: [PATCH] Bump version to 1.2.0-rc1 Signed-off-by: Dong Chen --- CHANGELOG.md | 37 +++++++++++++++++++++++++++++++++++++ version/version.go | 2 +- 2 files changed, 38 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 87cc7915f6..caa8b7a4ba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,42 @@ # Changelog +## 1.2.0-rc1 (2016-03-22) + +#### Scheduler + +- Move rescheduling out of experimental +- Differentiate constraint errors from affinity errors +- Printing unsatisfiable constraints for container scheduling failure + +#### API + +- Introduce engine-api client to Swarm +- Implement 'info' and 'version' with engine-api +- Fix swarm api response status code +- Spport ps node filter +- Fix HostConfig for /start endpoint + +#### Node management + +- Prevent crash on channel double close +- Manager retries EventMonitoring on failure. +- Docker engine updates hostname/domainname +- Force inspect for containers in Restarting state. +- Increase max thread count to 50k to accommodate large cluster or heavy workload +- Force to validate min and max refresh interval to be positive + +#### Mesos integration + +- Support rescind offer in swarm +- Update mesos tests + +#### Misc + +- Skip redundant endpoints in "network inspect" +- Remove parameter which is not used in createDiscovery +- Validate duration flags:--delay, --timeout, --replication-ttl +- Fix image matching via id + ## 1.1.3 (2016-03-03) - Fix missing HostConfig for rescheduled containers diff --git a/version/version.go b/version/version.go index 7b9eac9e25..a46befc09e 100644 --- a/version/version.go +++ b/version/version.go @@ -2,7 +2,7 @@ package version var ( // VERSION should be updated by hand at each release - VERSION = "1.1.3" + VERSION = "1.2.0" // GITCOMMIT will be overwritten automatically by the build system GITCOMMIT = "HEAD"