Browse code

Bumped version to 0.4.0

Solomon Hykes authored on 2013/06/04 02:59:48
Showing 3 changed files
... ...
@@ -1,5 +1,10 @@
1 1
 # Changelog
2 2
 
3
+## 0.4.0 (2013-06-03)
4
+ + Introducing Builder: 'docker build' builds a container, layer by layer, from a source repository containing a Dockerfile
5
+ + Introducing Remote API: control Docker programmatically using a simple HTTP/json API
6
+ * Runtime: various reliability and usability improvements
7
+
3 8
 ## 0.3.4 (2013-05-30)
4 9
  + Builder: 'docker build' builds a container, layer by layer, from a source repository containing a Dockerfile
5 10
  + Builder: 'docker build -t FOO' applies the tag FOO to the newly built container.
... ...
@@ -28,7 +28,7 @@ import (
28 28
 	"unicode"
29 29
 )
30 30
 
31
-const VERSION = "0.3.4"
31
+const VERSION = "0.4.0"
32 32
 
33 33
 var (
34 34
 	GIT_COMMIT string
... ...
@@ -1,3 +1,10 @@
1
+lxc-docker (0.4.0-1) precise; urgency=low
2
+  - Introducing Builder: 'docker build' builds a container, layer by layer, from a source repository containing a Dockerfile
3
+  - Introducing Remote API: control Docker programmatically using a simple HTTP/json API
4
+  - Runtime: various reliability and usability improvements
5
+
6
+ -- dotCloud <ops@dotcloud.com>  Mon, 03 Jun 2013 00:00:00 -0700
7
+
1 8
 lxc-docker (0.3.4-1) precise; urgency=low
2 9
   - Builder: 'docker build' builds a container, layer by layer, from a source repository containing a Dockerfile
3 10
   - Builder: 'docker build -t FOO' applies the tag FOO to the newly built container.