summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeth M Morton <seth.m.morton@gmail.com>2018-04-20 20:45:39 -0700
committerSeth M Morton <seth.m.morton@gmail.com>2018-04-20 20:45:39 -0700
commitcbad951110b5844c073de5393394b3d1690bc2b8 (patch)
tree941e244321fac6f1bf18749e34e40422859f059c
parentb32c4113ef0a1e236935c7f78c9a6b45fe75c17a (diff)
downloadnatsort-5.3.0.tar.gz
natsort version 5.3.0 release.5.3.0
- Fix bug in assessing fastnumbers version at import-time. - Add ability to consider unicode-decimal numbers as numbers.
-rw-r--r--README.rst12
-rw-r--r--docs/source/changelog.rst6
-rw-r--r--natsort/_version.py2
3 files changed, 13 insertions, 7 deletions
diff --git a/README.rst b/README.rst
index 0cd3981..45721f7 100644
--- a/README.rst
+++ b/README.rst
@@ -320,6 +320,12 @@ History
These are the last three entries of the changelog. See the package documentation
for the complete `changelog <http://natsort.readthedocs.io/en/master/changelog.html>`_.
+04-20-2018 v. 5.3.0
++++++++++++++++++++
+
+ - Fix bug in assessing ``fastnumbers`` version at import-time.
+ - Add ability to consider unicode-decimal numbers as numbers.
+
02-14-2018 v. 5.2.0
+++++++++++++++++++
@@ -331,9 +337,3 @@ for the complete `changelog <http://natsort.readthedocs.io/en/master/changelog.h
- Added additional unicode number support for Python 3.7.
- Added information on how to install and test.
-
-08-19-2017 v. 5.1.0
-+++++++++++++++++++
-
- - Fixed ``StopIteration`` warning on Python 3.6+.
- - All Unicode input is now normalized.
diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst
index 93f6790..8d33625 100644
--- a/docs/source/changelog.rst
+++ b/docs/source/changelog.rst
@@ -3,6 +3,12 @@
Changelog
---------
+04-20-2018 v. 5.3.0
++++++++++++++++++++
+
+ - Fix bug in assessing ``fastnumbers`` version at import-time.
+ - Add ability to consider unicode-decimal numbers as numbers.
+
02-14-2018 v. 5.2.0
+++++++++++++++++++
diff --git a/natsort/_version.py b/natsort/_version.py
index 298c08c..858acd4 100644
--- a/natsort/_version.py
+++ b/natsort/_version.py
@@ -6,4 +6,4 @@ from __future__ import (
absolute_import
)
-__version__ = '5.2.0'
+__version__ = '5.3.0'