From d1d4f477647b9672b28c3761360291a2e5b16ce1 Mon Sep 17 00:00:00 2001 From: Aanand Prasad Date: Tue, 29 Apr 2014 12:40:10 +0100 Subject: [PATCH] Ship 0.4.0 --- CHANGES.md | 12 ++++++++++++ fig/__init__.py | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 3c042b1bd..1c8e6bd33 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,18 @@ Change log ========== +0.4.0 (2014-04-29) +------------------ + + - Support Docker 0.9 and 0.10 + - Display progress bars correctly when pulling images (no more ski slopes) + - `fig up` now stops all services when any container exits + - Added support for the `privileged` config option in fig.yml (thanks @kvz!) + - Shortened and aligned log prefixes in `fig up` output + - Only containers started with `fig run` link back to their own service + - Handle UTF-8 correctly when streaming `fig build/run/up` output (thanks @mauvm and @shanejonas!) + - Error message improvements + 0.3.2 (2014-03-05) ------------------ diff --git a/fig/__init__.py b/fig/__init__.py index 3160f16d3..285dca9b0 100644 --- a/fig/__init__.py +++ b/fig/__init__.py @@ -1,4 +1,4 @@ from __future__ import unicode_literals from .service import Service -__version__ = '0.3.2' +__version__ = '0.4.0'