summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/source/changelog.rst10
-rw-r--r--docs/source/shell.rst14
2 files changed, 18 insertions, 6 deletions
diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst
index 542f5ad..c30a9db 100644
--- a/docs/source/changelog.rst
+++ b/docs/source/changelog.rst
@@ -3,6 +3,16 @@
Changelog
---------
+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.
+
+
09-02-2014 v. 3.5.0
'''''''''''''''''''
diff --git a/docs/source/shell.rst b/docs/source/shell.rst
index e29a6fe..5359250 100644
--- a/docs/source/shell.rst
+++ b/docs/source/shell.rst
@@ -7,8 +7,7 @@ Shell Script
============
The ``natsort`` shell script is automatically installed when you install
-:mod:`natsort` from "zip" or "tar.gz" via ``pip`` or ``easy_install``
-(there is a known bug with wheels that will not install the shell script).
+:mod:`natsort` with pip.
Below is the usage and some usage examples for the ``natsort`` shell script.
@@ -17,9 +16,9 @@ Usage
::
- usage: natsort [-h] [--version] [-p] [-f LOW HIGH] [-F LOW HIGH]
- [-e EXCLUDE] [-r] [-t {digit,int,float,version,ver}]
- [--nosign] [--noexp]
+ usage: natsort [-h] [--version] [-p] [-f LOW HIGH] [-F LOW HIGH] [-e EXCLUDE]
+ [-r] [-t {digit,int,float,version,ver}] [--nosign] [--noexp]
+ [--locale]
[entries [entries ...]]
Performs a natural sort on entries given on the command-line.
@@ -59,7 +58,10 @@ Usage
--noexp Do not consider an exponential as part of a number,
i.e. 1e4, would be considered as 1, "e", and 4, not as
10000. This only effects the --number-type=float.
-
+ --locale, -l Causes natsort to use locale-aware sorting. On some
+ systems, the underlying C library is broken, so if you
+ get results that you do not expect please install
+ PyICU and try again.
Description
-----------