summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeth M Morton <seth.m.morton@gmail.com>2015-04-02 21:11:59 -0700
committerSeth M Morton <seth.m.morton@gmail.com>2015-04-02 21:11:59 -0700
commitdc10f2fe9a34911a1ae1eb9975fb293886b75884 (patch)
treed85eda863d1476005855cb1bebab5d1985168f12
parent22f96103f2d3c961b3e6a2fd0a704c272da18324 (diff)
downloadnatsort-dc10f2fe9a34911a1ae1eb9975fb293886b75884.tar.gz
Bumped version and updated change log.
-rw-r--r--README.rst17
-rw-r--r--docs/source/changelog.rst8
-rw-r--r--natsort/_version.py2
3 files changed, 15 insertions, 12 deletions
diff --git a/README.rst b/README.rst
index be23aa7..96c2b48 100644
--- a/README.rst
+++ b/README.rst
@@ -178,10 +178,16 @@ History
These are the last three entries of the changelog. See the package documentation
for the complete `changelog <http://pythonhosted.org//natsort/changelog.html>`_.
+04-02-2015 v. 3.5.4
+'''''''''''''''''''
+
+ - Fixed bug where a 'TypeError' was raised if a string containing a leading
+ number was sorted with alpha-only strings when 'LOCALE' is used.
+
03-26-2015 v. 3.5.3
'''''''''''''''''''
- - Fixed bug where ``--reverse-filter`` option in shell script was not
+ - Fixed bug where '--reverse-filter; option in shell script was not
getting checked for correctness.
- Documentation updates to better describe locale bug, and illustrate
upcoming default behavior change.
@@ -192,12 +198,3 @@ for the complete `changelog <http://pythonhosted.org//natsort/changelog.html>`_.
- Enhancement that will convert a 'pathlib.Path' object to a 'str' if
'ns.PATH' is enabled.
-
-09-25-2014 v. 3.5.1
-'''''''''''''''''''
-
- - Fixed bug that caused list/tuples to fail when using 'ns.LOWECASEFIRST'
- or 'ns.IGNORECASE'.
- - Refactored modules so that only the public API was in natsort.py and
- ns_enum.py.
- - Refactored all import statements to be absolute, not relative.
diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst
index a57532c..a99687d 100644
--- a/docs/source/changelog.rst
+++ b/docs/source/changelog.rst
@@ -3,10 +3,16 @@
Changelog
---------
+04-02-2015 v. 3.5.4
+'''''''''''''''''''
+
+ - Fixed bug where a 'TypeError' was raised if a string containing a leading
+ number was sorted with alpha-only strings when 'LOCALE' is used.
+
03-26-2015 v. 3.5.3
'''''''''''''''''''
- - Fixed bug where ``--reverse-filter`` option in shell script was not
+ - Fixed bug where '--reverse-filter' option in shell script was not
getting checked for correctness.
- Documentation updates to better describe locale bug, and illustrate
upcoming default behavior change.
diff --git a/natsort/_version.py b/natsort/_version.py
index 0047fef..5c785cd 100644
--- a/natsort/_version.py
+++ b/natsort/_version.py
@@ -2,4 +2,4 @@
from __future__ import (print_function, division,
unicode_literals, absolute_import)
-__version__ = '3.5.3'
+__version__ = '3.5.4'