summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.rst14
-rw-r--r--docs/source/changelog.rst6
-rw-r--r--natsort/_version.py2
3 files changed, 13 insertions, 9 deletions
diff --git a/README.rst b/README.rst
index ee5b79d..7dc0ab2 100644
--- a/README.rst
+++ b/README.rst
@@ -284,6 +284,12 @@ History
These are the last three entries of the changelog. See the package documentation
for the complete `changelog <http://natsort.readthedocs.io/en/stable/changelog.html>`_.
+08-19-2017 v. 5.1.0
++++++++++++++++++++
+
+ - Fixed ``StopIteration`` warning on Python 3.6+.
+ - All Unicode input is now normalized.
+
04-30-2017 v. 5.0.3
+++++++++++++++++++
@@ -297,11 +303,3 @@ for the complete `changelog <http://natsort.readthedocs.io/en/stable/changelog.h
- Renamed several internal functions and variables to improve clarity.
- Improved documentation examples.
- Added a "how does it work?" section to the documentation.
-
-06-04-2016 v. 5.0.1
-+++++++++++++++++++
-
- - The ``ns`` enum attributes can now be imported from the top-level
- namespace.
- - Fixed a bug with the ``from natsort import *`` mechanism.
- - Fixed bug with using ``natsort`` with ``python -OO``.
diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst
index a7fcbe6..8bd3ee7 100644
--- a/docs/source/changelog.rst
+++ b/docs/source/changelog.rst
@@ -3,6 +3,12 @@
Changelog
---------
+08-19-2017 v. 5.1.0
++++++++++++++++++++
+
+ - Fixed ``StopIteration`` warning on Python 3.6+.
+ - All Unicode input is now normalized.
+
04-30-2017 v. 5.0.3
+++++++++++++++++++
diff --git a/natsort/_version.py b/natsort/_version.py
index 9fc3d49..ea302d5 100644
--- a/natsort/_version.py
+++ b/natsort/_version.py
@@ -6,4 +6,4 @@ from __future__ import (
absolute_import
)
-__version__ = '5.0.3'
+__version__ = '5.1.0'