From f5d08fc49c48cda7fdce613a1cef57ed2b105abd Mon Sep 17 00:00:00 2001 From: "Guillaume J. Charmes" Date: Fri, 21 Jun 2013 17:01:01 -0700 Subject: [PATCH 1/2] Bump version to 0.4.5 --- CHANGELOG.md | 7 +++++++ commands.go | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 114480015..4653db7c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +# 0.4.5 (2013-06-21) + + Builder: Introduce docker build from remote URL/github repository + * Runtime: Make the container size to be displayed via an option in docker ps. + * Tests: Improved and simplified + - Runtime: fix a regression introduced in 0.4.3 which caused the logs command to fail. + - Builder: fix a regression when using ADD with single regular file. + ## 0.4.4 (2013-06-19) - Builder: fix a regression introduced in 0.4.3 which caused builds to fail on new clients. diff --git a/commands.go b/commands.go index c6a5c3ba2..de49f5078 100644 --- a/commands.go +++ b/commands.go @@ -28,7 +28,7 @@ import ( "unicode" ) -const VERSION = "0.4.4" +const VERSION = "0.4.5" var ( GITCOMMIT string From d9d2540162a79e08d9bc84b16b6e9a91ea91d56e Mon Sep 17 00:00:00 2001 From: Solomon Hykes Date: Fri, 21 Jun 2013 17:09:49 -0700 Subject: [PATCH 2/2] Small copy improvements in Changelog --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4653db7c1..b52fcfccc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,8 @@ # Changelog # 0.4.5 (2013-06-21) - + Builder: Introduce docker build from remote URL/github repository - * Runtime: Make the container size to be displayed via an option in docker ps. + + Builder: 'docker build git://URL' fetches and builds a remote git repository + * Runtime: 'docker ps -s' optionally prints container size * Tests: Improved and simplified - Runtime: fix a regression introduced in 0.4.3 which caused the logs command to fail. - Builder: fix a regression when using ADD with single regular file.