Browse code

Bumped version to 0.3.0

Guillaume J. Charmes authored on 2013/05/05 23:42:23
Showing 3 changed files
... ...
@@ -1,5 +1,14 @@
1 1
 # Changelog
2 2
 
3
+## 0.3.0 (2013-05-06)
4
+ + Registry: Implement the new registry
5
+ + Documentation: new example: sharing data between 2 couchdb databases
6
+ - Runtime: Fix the command existance check
7
+ - Runtime: strings.Split may return an empty string on no match
8
+ - Runtime: Fix an index out of range crash if cgroup memory is not
9
+ * Documentation: Various improvments
10
+ * Vagrant: Use only one deb line in /etc/apt
11
+
3 12
 ## 0.2.2 (2013-05-03)
4 13
  + Support for data volumes ('docker run -v=PATH')
5 14
  + Share data volumes between containers ('docker run -volumes-from')
... ...
@@ -8,7 +17,7 @@
8 8
  * Various upgrades to the dev environment for contributors
9 9
 
10 10
 ## 0.2.1 (2013-05-01)
11
- + 'docker commit -run' bundles a layer with default runtime options: command, ports etc. 
11
+ + 'docker commit -run' bundles a layer with default runtime options: command, ports etc.
12 12
  * Improve install process on Vagrant
13 13
  + New Dockerfile operation: "maintainer"
14 14
  + New Dockerfile operation: "expose"
... ...
@@ -25,13 +34,12 @@
25 25
  + Add a changelog
26 26
  - Various bugfixes
27 27
 
28
-
29 28
 ## 0.1.8 (2013-04-22)
30 29
  - Dynamically detect cgroup capabilities
31 30
  - Issue stability warning on kernels <3.8
32 31
  - 'docker push' buffers on disk instead of memory
33 32
  - Fix 'docker diff' for removed files
34
- - Fix 'docker stop' for ghost containers 
33
+ - Fix 'docker stop' for ghost containers
35 34
  - Fix handling of pidfile
36 35
  - Various bugfixes and stability improvements
37 36
 
... ...
@@ -52,7 +60,7 @@
52 52
  - Improve diagnosis of missing system capabilities
53 53
  - Allow disabling memory limits at compile time
54 54
  - Add debian packaging
55
- - Documentation: installing on Arch Linux 
55
+ - Documentation: installing on Arch Linux
56 56
  - Documentation: running Redis on docker
57 57
  - Fixed lxc 0.9 compatibility
58 58
  - Automatically load aufs module
... ...
@@ -19,7 +19,7 @@ import (
19 19
 	"unicode"
20 20
 )
21 21
 
22
-const VERSION = "0.2.2"
22
+const VERSION = "0.3.0"
23 23
 
24 24
 var (
25 25
 	GIT_COMMIT string
... ...
@@ -1,3 +1,15 @@
1
+lxc-docker (0.3.0-1) precise; urgency=low
2
+ - Registry: Implement the new registry
3
+ - Documentation: new example: sharing data between 2 couchdb databases
4
+ - Runtime: Fix the command existance check
5
+ - Runtime: strings.Split may return an empty string on no match
6
+ - Runtime: Fix an index out of range crash if cgroup memory is not
7
+ - Documentation: Various improvments
8
+ - Vagrant: Use only one deb line in /etc/apt
9
+
10
+ -- dotCloud <ops@dotcloud.com>  Fri, 5 May 2013 00:00:00 -0700
11
+
12
+
1 13
 lxc-docker (0.2.2-1) precise; urgency=low
2 14
  - Support for data volumes ('docker run -v=PATH')
3 15
  - Share data volumes between containers ('docker run -volumes-from')
... ...
@@ -10,7 +22,7 @@ lxc-docker (0.2.2-1) precise; urgency=low
10 10
 
11 11
 lxc-docker (0.2.1-1) precise; urgency=low
12 12
 
13
-  - 'docker commit -run' bundles a layer with default runtime options: command, ports etc. 
13
+  - 'docker commit -run' bundles a layer with default runtime options: command, ports etc.
14 14
   - Improve install process on Vagrant
15 15
   - New Dockerfile operation: "maintainer"
16 16
   - New Dockerfile operation: "expose"