From f94ce7767cb682aa8fc2b9a28f37585fd3e3e359 Mon Sep 17 00:00:00 2001 From: Ben Firshman Date: Fri, 31 Jan 2014 10:52:57 +0000 Subject: [PATCH] Ship 0.2.0 --- CHANGES.md | 10 ++++++++++ fig/__init__.py | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 097cb3c11..df740749f 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,16 @@ Change log ========== +0.2.0 (2014-01-31) +------------------ + + - Link services to themselves so run commands can access the running service. (#67) + - Much better documentation. + - Make service dependency resolution more reliable. (#48) + - Load Fig configurations with a `.yaml` extension. (#58) + +Big thanks to @cameronmaske, @mrchrisadams and @damianmoore for their help with this release. + 0.1.4 (2014-01-27) ------------------ diff --git a/fig/__init__.py b/fig/__init__.py index 357eaa34c..6e8c28c35 100644 --- a/fig/__init__.py +++ b/fig/__init__.py @@ -1,4 +1,4 @@ from __future__ import unicode_literals from .service import Service -__version__ = '0.1.4' +__version__ = '0.2.0'