mirror of https://github.com/docker/docs.git
commit
584e10c9f9
21
CHANGELOG.md
21
CHANGELOG.md
|
|
@ -1,5 +1,26 @@
|
|||
# Changelog
|
||||
|
||||
## 1.2.1 (2016-04-22)
|
||||
|
||||
#### API
|
||||
|
||||
Use engine-api to handle large number of API calls
|
||||
Update ContainerConfig to embed HostConfig and NetworkingConfig
|
||||
stop/restart/kill an non-existent container should returns 500 rather than 404
|
||||
Return an error when assertion fails in hijack
|
||||
Return error when Image Pull fails
|
||||
Fix image pull bug (wait until download finishes)
|
||||
|
||||
#### Build
|
||||
|
||||
Switch to go 1.6.2
|
||||
Move dependencies to vendor/
|
||||
Updating Image Pull to use docker/distribution package
|
||||
|
||||
#### Misc
|
||||
|
||||
Documentation clean up
|
||||
|
||||
## 1.2.0 (2016-04-13)
|
||||
|
||||
#### Scheduler
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ package version
|
|||
|
||||
var (
|
||||
// VERSION should be updated by hand at each release
|
||||
VERSION = "1.2.0"
|
||||
VERSION = "1.2.1"
|
||||
|
||||
// GITCOMMIT will be overwritten automatically by the build system
|
||||
GITCOMMIT = "HEAD"
|
||||
|
|
|
|||
Loading…
Reference in New Issue