From d9c9b5e1f0e845b6e5cd1b9dd641dc0a050b85ef Mon Sep 17 00:00:00 2001 From: Aanand Prasad Date: Fri, 11 Jul 2014 17:44:31 -0700 Subject: [PATCH] Ship 0.5.1 Signed-off-by: Aanand Prasad --- CHANGES.md | 9 +++++++++ fig/__init__.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 0dbcae9ea..9a09548cb 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,15 @@ Change log ========== +0.5.1 (2014-07-11) +------------------ + + - If a service has a command defined, `fig run [service]` with no further arguments will run it. + - The project name now defaults to the directory containing fig.yml, not the current working directory (if they're different) + - `volumes_from` now works properly with containers as well as services + - Fixed a race condition when recreating containers in `fig up` + + 0.5.0 (2014-07-11) ------------------ diff --git a/fig/__init__.py b/fig/__init__.py index db027d365..0eada41da 100644 --- a/fig/__init__.py +++ b/fig/__init__.py @@ -1,4 +1,4 @@ from __future__ import unicode_literals from .service import Service -__version__ = '0.5.0' +__version__ = '0.5.1'