From a6324d622604291e3c77ff9838b379a493259457 Mon Sep 17 00:00:00 2001 From: Aanand Prasad Date: Mon, 28 Jul 2014 11:03:12 -0700 Subject: [PATCH] Ship 0.5.2 Signed-off-by: Aanand Prasad --- CHANGES.md | 11 +++++++++++ docs/install.md | 4 ++-- fig/__init__.py | 2 +- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index f152cee7e..ad3967bce 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,17 @@ Change log ========== +0.5.2 (2014-07-28) +------------------ + + - Added a `--no-cache` option to `fig build`, which bypasses the cache just like `docker build --no-cache`. + - Fixed the `dns:` fig.yml option, which was causing fig to error out. + - Fixed a bug where fig couldn't start under Python 2.6. + - Fixed a log-streaming bug that occasionally caused fig to exit. + +Thanks @dnephin and @marksteve! + + 0.5.1 (2014-07-11) ------------------ diff --git a/docs/install.md b/docs/install.md index 90f75e919..ee15f745d 100644 --- a/docs/install.md +++ b/docs/install.md @@ -16,12 +16,12 @@ Docker has guides for [Ubuntu](http://docs.docker.io/en/latest/installation/ubun Next, install Fig. On OS X: - $ curl -L https://github.com/orchardup/fig/releases/download/0.5.1/darwin > /usr/local/bin/fig + $ curl -L https://github.com/orchardup/fig/releases/download/0.5.2/darwin > /usr/local/bin/fig $ chmod +x /usr/local/bin/fig On 64-bit Linux: - $ curl -L https://github.com/orchardup/fig/releases/download/0.5.1/linux > /usr/local/bin/fig + $ curl -L https://github.com/orchardup/fig/releases/download/0.5.2/linux > /usr/local/bin/fig $ chmod +x /usr/local/bin/fig Fig is also available as a Python package if you're on another platform (or if you prefer that sort of thing): diff --git a/fig/__init__.py b/fig/__init__.py index 0eada41da..a0a0fec27 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.1' +__version__ = '0.5.2'