Browse code

Bumped version to 0.3.4

Solomon Hykes authored on 2013/05/31 09:27:45
Showing 4 changed files
... ...
@@ -1,5 +1,14 @@
1 1
 # Changelog
2 2
 
3
+## 0.3.4 (2013-05-30)
4
+ + Builder: 'docker build' builds a container, layer by layer, from a source repository containing a Dockerfile
5
+ + Builder: 'docker build -t FOO' applies the tag FOO to the newly built container.
6
+ + Runtime: interactive TTYs correctly handle window resize
7
+ * Runtime: fix how configuration is merged between layers
8
+ + Remote API: split stdout and stderr on 'docker run'
9
+ + Remote API: optionally listen on a different IP and port (use at your own risk)
10
+ * Documentation: improved install instructions.
11
+
3 12
 ## 0.3.3 (2013-05-23)
4 13
  - Registry: Fix push regression
5 14
  - Various bugfixes
... ...
@@ -28,7 +28,7 @@ import (
28 28
 	"unicode"
29 29
 )
30 30
 
31
-const VERSION = "0.3.3"
31
+const VERSION = "0.3.4"
32 32
 
33 33
 var (
34 34
 	GIT_COMMIT string
... ...
@@ -1,3 +1,14 @@
1
+lxc-docker (0.3.4-1) UNRELEASED; urgency=low
2
+  - Builder: 'docker build' builds a container, layer by layer, from a source repository containing a Dockerfile
3
+  - Builder: 'docker build -t FOO' applies the tag FOO to the newly built container.
4
+  - Runtime: interactive TTYs correctly handle window resize
5
+  - Runtime: fix how configuration is merged between layers
6
+  - Remote API: split stdout and stderr on 'docker run'
7
+  - Remote API: optionally listen on a different IP and port (use at your own risk)
8
+  - Documentation: improved install instructions.
9
+
10
+ -- dotCloud <ops@dotcloud.com>  Thu, 30 May 2013 00:00:00 -0700
11
+
1 12
 lxc-docker (0.3.2-1) UNRELEASED; urgency=low
2 13
   - Runtime: Store the actual archive on commit
3 14
   - Registry: Improve the checksum process
... ...
@@ -1,3 +1,15 @@
1
+lxc-docker (0.3.4-1) precise; urgency=low
2
+  - Builder: 'docker build' builds a container, layer by layer, from a source repository containing a Dockerfile
3
+  - Builder: 'docker build -t FOO' applies the tag FOO to the newly built container.
4
+  - Runtime: interactive TTYs correctly handle window resize
5
+  - Runtime: fix how configuration is merged between layers
6
+  - Remote API: split stdout and stderr on 'docker run'
7
+  - Remote API: optionally listen on a different IP and port (use at your own risk)
8
+  - Documentation: improved install instructions.
9
+
10
+ -- dotCloud <ops@dotcloud.com>  Thu, 30 May 2013 00:00:00 -0700
11
+
12
+
1 13
 lxc-docker (0.3.3-1) precise; urgency=low
2 14
   - Registry: Fix push regression
3 15
   - Various bugfixes