Skip to content

Commit 3b89d13

Browse files
committed
Bump to v0.5.1
1 parent 16225c4 commit 3b89d13

2 files changed

Lines changed: 20 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# Changelog
22

3+
## 0.5.1 (2013-07-30)
4+
+ API: Docker client now sets useragent (RFC 2616)
5+
+ Runtime: Add `ps` args to `docker top`
6+
+ Runtime: Add support for container ID files (pidfile like)
7+
+ Runtime: Add container=lxc in default env
8+
+ Runtime: Support networkless containers with `docker run -n` and `docker -d -b=none`
9+
+ API: Add /events endpoint
10+
+ Builder: ADD command now understands URLs
11+
+ Builder: CmdAdd and CmdEnv now respect Dockerfile-set ENV variables
12+
* Hack: Simplify unit tests with helpers
13+
* Hack: Improve docker.upstart event
14+
* Hack: Add coverage testing into docker-ci
15+
* Runtime: Stdout/stderr logs are now stored in the same file as JSON
16+
* Runtime: Allocate a /16 IP range by default, with fallback to /24. Try 12 ranges instead of 3.
17+
* Runtime: Change .dockercfg format to json and support multiple auth remote
18+
- Runtime: Do not override volumes from config
19+
- Runtime: Fix issue with EXPOSE override
20+
- Builder: Create directories with 755 instead of 700 within ADD instruction
21+
322
## 0.5.0 (2013-07-17)
423
+ Runtime: List all processes running inside a container with 'docker top'
524
+ Runtime: Host directories can be mounted as volumes with 'docker run -v'

commands.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import (
2727
"unicode"
2828
)
2929

30-
const VERSION = "0.5.0-dev"
30+
const VERSION = "0.5.1"
3131

3232
var (
3333
GITCOMMIT string

0 commit comments

Comments
 (0)