Bump version to 1.1.0-rc1

Signed-off-by: Victor Vieux <victorvieux@gmail.com>
This commit is contained in:
Victor Vieux 2016-01-14 13:21:48 -08:00
parent f883a6d508
commit 7b142f5642
2 changed files with 41 additions and 1 deletions

View File

@ -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

View File

@ -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"