Browse code

Bump version to 0.5.0

Guillaume J. Charmes authored on 2013/07/16 06:55:51
Showing 2 changed files
... ...
@@ -1,5 +1,16 @@
1 1
 # Changelog
2 2
 
3
+## 0.5.0 (2013-07-16)
4
+ + Remote API: Add /top endpoint
5
+ + Runtime: host directories can be mounted as volumes with 'docker run -b'
6
+ + Runtime: Add UDP support
7
+ + Builder: Add ENTRYPOINT instruction
8
+ + Builder: Add VOLUMES instruction
9
+ * Runtime: Add options to docker login
10
+ * Builder: Display full output by default
11
+ - Registry: Fix issues when pushing to 3rd part registries
12
+ - Runtime: Skip `hostname` when merging config
13
+
3 14
 ## 0.4.8 (2013-07-01)
4 15
  + Builder: New build operation ENTRYPOINT adds an executable entry point to the container.
5 16
  - Runtime: Fix a bug which caused 'docker run -d' to no longer print the container ID.
... ...
@@ -27,7 +27,7 @@ import (
27 27
 	"unicode"
28 28
 )
29 29
 
30
-const VERSION = "0.4.8"
30
+const VERSION = "0.5.0"
31 31
 
32 32
 var (
33 33
 	GITCOMMIT string