diff --git a/CHANGES.md b/CHANGES.md index 4cb87c18ab..40f5c11ebb 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,13 @@ Change log ========== +0.3.1 (2014-03-04) +------------------ + + - Added contribution instructions. (Thanks @kvz!) + - Fixed `fig rm` throwing an error. + - Fixed a bug in `fig ps` on Docker 0.8.1 when there is a container with no command. + 0.3.0 (2014-03-03) ------------------ diff --git a/fig/__init__.py b/fig/__init__.py index bb994c3572..47ebe395e5 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.0' +__version__ = '0.3.1'