mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Merge pull request #950 from dotcloud/bump_0.4.3
Bumped version to 0.4.3
This commit is contained in:
commit
a078d3c872
2 changed files with 21 additions and 1 deletions
20
CHANGELOG.md
20
CHANGELOG.md
|
@ -1,5 +1,25 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 0.4.3 (2013-06-19)
|
||||||
|
+ Builder: ADD of a local file will detect tar archives and unpack them
|
||||||
|
* Runtime: Remove bsdtar dependency
|
||||||
|
* Runtime: Add unix socket and multiple -H support
|
||||||
|
* Runtime: Prevent rm of running containers
|
||||||
|
* Runtime: Use go1.1 cookiejar
|
||||||
|
* Builder: ADD improvements: use tar for copy + automatically unpack local archives
|
||||||
|
* Builder: ADD uses tar/untar for copies instead of calling 'cp -ar'
|
||||||
|
* Builder: nicer output for 'docker build'
|
||||||
|
* Builder: fixed the behavior of ADD to be (mostly) reverse-compatible, predictable and well-documented.
|
||||||
|
* Client: HumanReadable ProgressBar sizes in pull
|
||||||
|
* Client: Fix docker version's git commit output
|
||||||
|
* API: Send all tags on History API call
|
||||||
|
* API: Add tag lookup to history command. Fixes #882
|
||||||
|
- Runtime: Fix issue detaching from running TTY container
|
||||||
|
- Runtime: Forbid parralel push/pull for a single image/repo. Fixes #311
|
||||||
|
- Runtime: Fix race condition within Run command when attaching.
|
||||||
|
- Builder: fix a bug which caused builds to fail if ADD was the first command
|
||||||
|
- Documentation: fix missing command in irc bouncer example
|
||||||
|
|
||||||
## 0.4.2 (2013-06-17)
|
## 0.4.2 (2013-06-17)
|
||||||
- Packaging: Bumped version to work around an Ubuntu bug
|
- Packaging: Bumped version to work around an Ubuntu bug
|
||||||
|
|
||||||
|
|
|
@ -29,7 +29,7 @@ import (
|
||||||
"unicode"
|
"unicode"
|
||||||
)
|
)
|
||||||
|
|
||||||
const VERSION = "0.4.2"
|
const VERSION = "0.4.3"
|
||||||
|
|
||||||
var (
|
var (
|
||||||
GITCOMMIT string
|
GITCOMMIT string
|
||||||
|
|
Loading…
Reference in a new issue