Bumped version to 0.4.0
This commit is contained in:
parent
7a4408f608
commit
a8ae398bf5
3 changed files with 13 additions and 1 deletions
|
@ -1,5 +1,10 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 0.4.0 (2013-06-03)
|
||||||
|
+ Introducing Builder: 'docker build' builds a container, layer by layer, from a source repository containing a Dockerfile
|
||||||
|
+ Introducing Remote API: control Docker programmatically using a simple HTTP/json API
|
||||||
|
* Runtime: various reliability and usability improvements
|
||||||
|
|
||||||
## 0.3.4 (2013-05-30)
|
## 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' 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.
|
+ Builder: 'docker build -t FOO' applies the tag FOO to the newly built container.
|
||||||
|
|
|
@ -28,7 +28,7 @@ import (
|
||||||
"unicode"
|
"unicode"
|
||||||
)
|
)
|
||||||
|
|
||||||
const VERSION = "0.3.4"
|
const VERSION = "0.4.0"
|
||||||
|
|
||||||
var (
|
var (
|
||||||
GIT_COMMIT string
|
GIT_COMMIT string
|
||||||
|
|
|
@ -1,3 +1,10 @@
|
||||||
|
lxc-docker (0.4.0-1) precise; urgency=low
|
||||||
|
- Introducing Builder: 'docker build' builds a container, layer by layer, from a source repository containing a Dockerfile
|
||||||
|
- Introducing Remote API: control Docker programmatically using a simple HTTP/json API
|
||||||
|
- Runtime: various reliability and usability improvements
|
||||||
|
|
||||||
|
-- dotCloud <ops@dotcloud.com> Mon, 03 Jun 2013 00:00:00 -0700
|
||||||
|
|
||||||
lxc-docker (0.3.4-1) precise; urgency=low
|
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' 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.
|
- Builder: 'docker build -t FOO' applies the tag FOO to the newly built container.
|
||||||
|
|
Loading…
Reference in a new issue