From d368e2fca96486c2a19e24912f63d3e43308dcbc Mon Sep 17 00:00:00 2001
From: Ben Firshman <ben@firshman.co.uk>
Date: Mon, 17 Feb 2014 21:37:31 +0000
Subject: [PATCH] Ship 0.2.2

---
 CHANGES.md      | 10 ++++++++++
 fig/__init__.py |  2 +-
 2 files changed, 11 insertions(+), 1 deletion(-)

diff --git a/CHANGES.md b/CHANGES.md
index 95edc1280..cf47558f1 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,6 +1,16 @@
 Change log
 ==========
 
+0.2.2 (2014-02-17)
+------------------
+
+ - Resolve dependencies using Cormen/Tarjan topological sort
+ - Fix `fig up` not printing log output
+ - Stop containers in reverse order to starting
+ - Fix scale command not binding ports
+
+Thanks to @barnybug and @dustinlacewell for their work on this release.
+
 0.2.1 (2014-02-04)
 ------------------
 
diff --git a/fig/__init__.py b/fig/__init__.py
index 9f97b8901..1feb17952 100644
--- a/fig/__init__.py
+++ b/fig/__init__.py
@@ -1,4 +1,4 @@
 from __future__ import unicode_literals
 from .service import Service
 
-__version__ = '0.2.1'
+__version__ = '0.2.2'