summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeth M Morton <seth.m.morton@gmail.com>2017-01-26 23:50:52 -0800
committerSeth M Morton <seth.m.morton@gmail.com>2017-01-26 23:50:52 -0800
commit48b07dd6c773dbc434e92129c425206ef9a60337 (patch)
tree4d34df21ebcd88a8a337521d7b63e5bf4cdaf4be
parentf5bc2966f31eac588d400de53ec1f62bcaaa3536 (diff)
downloadnatsort-5.0.2.tar.gz
natsort version 5.0.2 release.v5.0.25.0.2
- Added better unicode support for Python 3.6. - Renamed several internal functions. - Improved documentation. - Added a "How does it work?" section in the documentation.
-rw-r--r--README.rst15
-rw-r--r--docs/source/changelog.rst8
-rw-r--r--natsort/_version.py2
3 files changed, 17 insertions, 8 deletions
diff --git a/README.rst b/README.rst
index 5be6d63..39de7b3 100644
--- a/README.rst
+++ b/README.rst
@@ -272,6 +272,14 @@ History
These are the last three entries of the changelog. See the package documentation
for the complete `changelog <http://pythonhosted.org//natsort/changelog.html>`_.
+01-02-2017 v. 5.0.2
++++++++++++++++++++
+
+ - Added additional unicode number support for Python 3.6.
+ - 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
+++++++++++++++++++
@@ -301,10 +309,3 @@ for the complete `changelog <http://pythonhosted.org//natsort/changelog.html>`_.
- Improved clarity of documentaion with regards to locale-aware sorting.
- Added a new ``chain_functions`` function for convenience in creating
a complex user-given ``key`` from several existing functions.
-
-11-01-2015 v. 4.0.4
-+++++++++++++++++++
-
- - Improved coverage of unit tests.
- - Unit tests use new and improved hypothesis library.
- - Fixed compatibility issues with Python 3.5
diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst
index 9fb6602..7adb905 100644
--- a/docs/source/changelog.rst
+++ b/docs/source/changelog.rst
@@ -3,6 +3,14 @@
Changelog
---------
+01-02-2017 v. 5.0.2
++++++++++++++++++++
+
+ - Added additional unicode number support for Python 3.6.
+ - 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
+++++++++++++++++++
diff --git a/natsort/_version.py b/natsort/_version.py
index 1e21bc6..3748a2c 100644
--- a/natsort/_version.py
+++ b/natsort/_version.py
@@ -6,4 +6,4 @@ from __future__ import (
absolute_import
)
-__version__ = '5.0.1'
+__version__ = '5.0.2'