Browse code

Bumped version to 0.2.1

Solomon Hykes authored on 2013/05/02 09:17:13
Showing 3 changed files
... ...
@@ -1,5 +1,15 @@
1 1
 # Changelog
2 2
 
3
+## 0.2.1 (2012-05-01)
4
+ + 'docker commit -run' bundles a layer with default runtime options: command, ports etc. 
5
+ * Improve install process on Vagrant
6
+ + New Dockerfile operation: "maintainer"
7
+ + New Dockerfile operation: "expose"
8
+ + New Dockerfile operation: "cmd"
9
+ + Contrib script to build a Debian base layer
10
+ + 'docker -d -r': restart crashed containers at daemon startup
11
+ * Runtime: improve test coverage
12
+
3 13
 ## 0.2.0 (2012-04-23)
4 14
  - Runtime: ghost containers can be killed and waited for
5 15
  * Documentation: update install intructions
... ...
@@ -18,7 +18,7 @@ import (
18 18
 	"unicode"
19 19
 )
20 20
 
21
-const VERSION = "0.2.0"
21
+const VERSION = "0.2.1"
22 22
 
23 23
 var (
24 24
 	GIT_COMMIT string
... ...
@@ -1,3 +1,18 @@
1
+
2
+lxc-docker (0.2.1-1) precise; urgency=low
3
+
4
+  - 'docker commit -run' bundles a layer with default runtime options: command, ports etc. 
5
+  - Improve install process on Vagrant
6
+  - New Dockerfile operation: "maintainer"
7
+  - New Dockerfile operation: "expose"
8
+  - New Dockerfile operation: "cmd"
9
+  - Contrib script to build a Debian base layer
10
+  - 'docker -d -r': restart crashed containers at daemon startup
11
+  - Runtime: improve test coverage
12
+
13
+ -- dotCloud <ops@dotcloud.com>  Wed, 1 May 2013 00:00:00 -0700
14
+
15
+
1 16
 lxc-docker (0.2.0-1) precise; urgency=low
2 17
 
3 18
   - Runtime: ghost containers can be killed and waited for