summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.rst5
-rw-r--r--setup.py2
2 files changed, 6 insertions, 1 deletions
diff --git a/README.rst b/README.rst
index e3ab871..f6d52f2 100644
--- a/README.rst
+++ b/README.rst
@@ -102,6 +102,11 @@ Python 2.5 is not supported (too old for the tests for the most part). It could
Changes
=======
+0.1.7
+-----
+
+* Fix parsing of microseconds (https://bitbucket.org/micktwomey/pyiso8601/issue/9/regression-parsing-microseconds) (Thanks to dims and bnemec)
+
0.1.6
-----
diff --git a/setup.py b/setup.py
index 1cfe54c..27eb921 100644
--- a/setup.py
+++ b/setup.py
@@ -9,7 +9,7 @@ long_description = open(os.path.join(os.path.dirname(__file__), "README.rst")).r
setup(
name="iso8601",
- version="0.1.6",
+ version="0.1.7",
description=long_description.split("\n")[0],
long_description=long_description,
author="Michael Twomey",