summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillaume J. Charmes <guillaume.charmes@dotcloud.com>2013-07-31 10:53:36 -0700
committerGuillaume J. Charmes <guillaume.charmes@dotcloud.com>2013-07-31 10:53:36 -0700
commit3b89d13aaf76cd363d62955c050675ccd68a7296 (patch)
tree40332542abeba2ea4709cd858392a3b67de868ac
parent16225c473f2c999ce3e9a13c4c8e02502a9a841c (diff)
downloaddocker-3b89d13aaf76cd363d62955c050675ccd68a7296.tar.gz
Bump to v0.5.1v0.5.1
-rw-r--r--CHANGELOG.md19
-rw-r--r--commands.go2
2 files changed, 20 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 00e358c136..843f0212d0 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,24 @@
# Changelog
+## 0.5.1 (2013-07-30)
+ + API: Docker client now sets useragent (RFC 2616)
+ + Runtime: Add `ps` args to `docker top`
+ + Runtime: Add support for container ID files (pidfile like)
+ + Runtime: Add container=lxc in default env
+ + Runtime: Support networkless containers with `docker run -n` and `docker -d -b=none`
+ + API: Add /events endpoint
+ + Builder: ADD command now understands URLs
+ + Builder: CmdAdd and CmdEnv now respect Dockerfile-set ENV variables
+ * Hack: Simplify unit tests with helpers
+ * Hack: Improve docker.upstart event
+ * Hack: Add coverage testing into docker-ci
+ * Runtime: Stdout/stderr logs are now stored in the same file as JSON
+ * Runtime: Allocate a /16 IP range by default, with fallback to /24. Try 12 ranges instead of 3.
+ * Runtime: Change .dockercfg format to json and support multiple auth remote
+ - Runtime: Do not override volumes from config
+ - Runtime: Fix issue with EXPOSE override
+ - Builder: Create directories with 755 instead of 700 within ADD instruction
+
## 0.5.0 (2013-07-17)
+ Runtime: List all processes running inside a container with 'docker top'
+ Runtime: Host directories can be mounted as volumes with 'docker run -v'
diff --git a/commands.go b/commands.go
index 95ddca1f1d..8523c3b2e8 100644
--- a/commands.go
+++ b/commands.go
@@ -27,7 +27,7 @@ import (
"unicode"
)
-const VERSION = "0.5.0-dev"
+const VERSION = "0.5.1"
var (
GITCOMMIT string