1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Bumped version to 0.3.4

This commit is contained in:
Solomon Hykes 2013-05-30 17:27:45 -07:00
parent a148301a03
commit 8d73740343
4 changed files with 33 additions and 1 deletions

View file

@ -1,5 +1,14 @@
# Changelog # Changelog
## 0.3.4 (2013-05-30)
+ Builder: 'docker build' builds a container, layer by layer, from a source repository containing a Dockerfile
+ Builder: 'docker build -t FOO' applies the tag FOO to the newly built container.
+ Runtime: interactive TTYs correctly handle window resize
* Runtime: fix how configuration is merged between layers
+ Remote API: split stdout and stderr on 'docker run'
+ Remote API: optionally listen on a different IP and port (use at your own risk)
* Documentation: improved install instructions.
## 0.3.3 (2013-05-23) ## 0.3.3 (2013-05-23)
- Registry: Fix push regression - Registry: Fix push regression
- Various bugfixes - Various bugfixes

View file

@ -28,7 +28,7 @@ import (
"unicode" "unicode"
) )
const VERSION = "0.3.3" const VERSION = "0.3.4"
var ( var (
GIT_COMMIT string GIT_COMMIT string

View file

@ -1,3 +1,14 @@
lxc-docker (0.3.4-1) UNRELEASED; urgency=low
- Builder: 'docker build' builds a container, layer by layer, from a source repository containing a Dockerfile
- Builder: 'docker build -t FOO' applies the tag FOO to the newly built container.
- Runtime: interactive TTYs correctly handle window resize
- Runtime: fix how configuration is merged between layers
- Remote API: split stdout and stderr on 'docker run'
- Remote API: optionally listen on a different IP and port (use at your own risk)
- Documentation: improved install instructions.
-- dotCloud <ops@dotcloud.com> Thu, 30 May 2013 00:00:00 -0700
lxc-docker (0.3.2-1) UNRELEASED; urgency=low lxc-docker (0.3.2-1) UNRELEASED; urgency=low
- Runtime: Store the actual archive on commit - Runtime: Store the actual archive on commit
- Registry: Improve the checksum process - Registry: Improve the checksum process

View file

@ -1,3 +1,15 @@
lxc-docker (0.3.4-1) precise; urgency=low
- Builder: 'docker build' builds a container, layer by layer, from a source repository containing a Dockerfile
- Builder: 'docker build -t FOO' applies the tag FOO to the newly built container.
- Runtime: interactive TTYs correctly handle window resize
- Runtime: fix how configuration is merged between layers
- Remote API: split stdout and stderr on 'docker run'
- Remote API: optionally listen on a different IP and port (use at your own risk)
- Documentation: improved install instructions.
-- dotCloud <ops@dotcloud.com> Thu, 30 May 2013 00:00:00 -0700
lxc-docker (0.3.3-1) precise; urgency=low lxc-docker (0.3.3-1) precise; urgency=low
- Registry: Fix push regression - Registry: Fix push regression
- Various bugfixes - Various bugfixes