diff --git a/CHANGES.rst b/CHANGES.rst index 1644c18..98fbe47 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,6 +3,19 @@ Change Log ---------- +0.2.1 (2014-04-28) +++++++++++++++++++ + +* Reformats ``README.rst``. +* Renames change log file to ``*.rst``. +* Adds authors and contributing files. +* Sets up Travis CI. +* Adds version to ``__init__.py``. +* Fixes #5. Make ``accented_to_numbered()`` add apostrophes when needed. +* Fixes #4. Fixes ``numbered_to_accented()`` handling of ``'v'`` vowel. +* Fixes #3. Changes ``IndexError`` exception handlers to ``KeyError``. +* Fixes #2. Fixes ``accented_to_numbered()`` with uppercase accented vowel. + 0.2.0 (2014-04-14) ++++++++++++++++++ diff --git a/dragonmapper/__init__.py b/dragonmapper/__init__.py index 355af16..3b7426b 100644 --- a/dragonmapper/__init__.py +++ b/dragonmapper/__init__.py @@ -1,3 +1,3 @@ # -*- coding: utf-8 -*- -__version__ = '0.2.0' +__version__ = '0.2.1'