Browse code

Bumped version to 0.4.1

Victor Vieux authored on 2013/06/18 04:01:21
Showing 3 changed files
... ...
@@ -1,5 +1,22 @@
1 1
 # Changelog
2 2
 
3
+## 0.4.1 (2013-06-17)
4
+ + Remote Api: Add flag to enable cross domain requests
5
+ + Remote Api/Client: Add images and containers sizes in docker ps and docker images
6
+ + Runtime: Configure dns configuration host-wide with 'docker -d -dns'
7
+ + Runtime: Detect faulty DNS configuration and replace it with a public default
8
+ + Runtime: allow docker run <name>:<id>
9
+ + Runtime: you can now specify public port (ex: -p 80:4500)
10
+ * Client: allow multiple params in inspect
11
+ * Client: Print the container id before the hijack in `docker run`
12
+ * Registry: add regexp check on repo's name
13
+ * Registry: Move auth to the client
14
+ * Runtime: improved image removal to garbage-collect unreferenced parents
15
+ * Vagrantfile: Add the rest api port to vagrantfile's port_forward
16
+ * Upgrade to Go 1.1
17
+ - Builder: don't ignore last line in Dockerfile when it doesn't end with \n
18
+ - Registry: Remove login check on pull
19
+
3 20
 ## 0.4.0 (2013-06-03)
4 21
  + Introducing Builder: 'docker build' builds a container, layer by layer, from a source repository containing a Dockerfile
5 22
  + Introducing Remote API: control Docker programmatically using a simple HTTP/json API
... ...
@@ -29,7 +29,7 @@ import (
29 29
 	"unicode"
30 30
 )
31 31
 
32
-const VERSION = "0.4.0"
32
+const VERSION = "0.4.1"
33 33
 
34 34
 var (
35 35
 	GITCOMMIT string
... ...
@@ -1,3 +1,22 @@
1
+lxc-docker (0.4.1-1) precise; urgency=low
2
+ - Builder: don't ignore last line in Dockerfile when it doesn't end with \n
3
+ - Client: allow multiple params in inspect
4
+ - Client: Print the container id before the hijack in `docker run`
5
+ - Remote Api: Add flag to enable cross domain requests
6
+ - Remote Api/Client: Add images and containers sizes in docker ps and docker images
7
+ - Registry: add regexp check on repo's name
8
+ - Registry: Move auth to the client
9
+ - Registry: Remove login check on pull
10
+ - Runtime: Configure dns configuration host-wide with 'docker -d -dns'
11
+ - Runtime: Detect faulty DNS configuration and replace it with a public default
12
+ - Runtime: allow docker run <name>:<id>
13
+ - Runtime: you can now specify public port (ex: -p 80:4500)
14
+ - Runtime: improved image removal to garbage-collect unreferenced parents
15
+ - Vagrantfile: Add the rest api port to vagrantfile's port_forward
16
+ - Upgrade to Go 1.1
17
+
18
+ -- dotCloud <ops@dotcloud.com>  Mon, 17 Jun 2013 00:00:00 -0700
19
+
1 20
 lxc-docker (0.4.0-1) precise; urgency=low
2 21
   - Introducing Builder: 'docker build' builds a container, layer by layer, from a source repository containing a Dockerfile
3 22
   - Introducing Remote API: control Docker programmatically using a simple HTTP/json API