From 7b142f56424c7e5587d89e7f90203819594e7ecb Mon Sep 17 00:00:00 2001 From: Victor Vieux Date: Thu, 14 Jan 2016 13:21:48 -0800 Subject: [PATCH] Bump version to 1.1.0-rc1 Signed-off-by: Victor Vieux --- CHANGELOG.md | 40 ++++++++++++++++++++++++++++++++++++++++ version/version.go | 2 +- 2 files changed, 41 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6363041546..1c2276bed2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,45 @@ # Changelog +## 1.1.0 (2015-01-14) + +#### Scheduler + +- Add support for container rescheduling on node failure. (experimental) +- Use failureCount as a secondary health indicator +- Add swarm container create retry option +- Fixed the way soft affinities and handled + +#### API + +- Support private registry on docker run +- Expose error and last update time in docker info +- Sort images by Created +- Fix error when inspect on unhealthy node +- Prevent panic in filters when container has no name +- Add buildtime, kernelversion and experimental to API version + +#### Node Managment + +- Add a random delay to avoid synchronized registration at swarm join +- Use engine connection error to fail engine fast +- Introduce pending state + +#### Mesos integration + +- Rename slave to agent +- Upgrade tests to use mesos 0.25 +- Code refactors +- Improve debug output +- Enable checkpoint failover in FrameworkInfo +- Fix timeout when pulling images +- Add timeout to refuse offers + +#### Misc + +- Fix license grant +- Documentation update +- Use discovery from docker/docker + ## 1.0.1 (2015-12-09) #### Scheduler diff --git a/version/version.go b/version/version.go index 3812170ec0..a8fca12d3f 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.0.1" + VERSION = "1.1.0" // GITCOMMIT will be overwritten automatically by the build system GITCOMMIT = "HEAD"