Skip to content

Commit

Permalink
Bump version: 7.0.0 → 7.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
SethMMorton committed Jan 28, 2020
1 parent 3f998d7 commit d0d0d29
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
Unreleased
---

[7.0.1] - 2020-01-27
---

### Fixed
- Bug where that caused incorrect sorting when using locales
that have a `"."` character as the thousands separator.
Expand Down Expand Up @@ -527,6 +530,7 @@ a pipeline by which to filter
- Sorting algorithm to support floats (including exponentials) and basic version number support

<!---Comparison links-->
[7.0.1]: https://github.com/SethMMorton/natsort/compare/7.0.0...7.0.1
[7.0.0]: https://github.com/SethMMorton/natsort/compare/6.2.0...7.0.0
[6.2.0]: https://github.com/SethMMorton/natsort/compare/6.1.0...6.2.0
[6.1.0]: https://github.com/SethMMorton/natsort/compare/6.0.0...6.1.0
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
# built documents.
#
# The full version, including alpha/beta/rc tags.
release = '7.0.0'
release = '7.0.1'
# The short X.Y version.
version = '.'.join(release.split('.')[0:2])

Expand Down
2 changes: 1 addition & 1 deletion natsort/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
)
from natsort.utils import chain_functions

__version__ = "7.0.0"
__version__ = "7.0.1"

__all__ = [
"natsort_key",
Expand Down
3 changes: 1 addition & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 7.0.0
current_version = 7.0.1
commit = True
tag = True
tag_name = {new_version}
Expand Down Expand Up @@ -62,4 +62,3 @@ exclude =
dist,
docs,
.venv

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from setuptools import find_packages, setup
setup(
name='natsort',
version='7.0.0',
version='7.0.1',
packages=find_packages(),
entry_points={'console_scripts': ['natsort = natsort.__main__:main']},
python_requires=">=3.4",
Expand Down

0 comments on commit d0d0d29

Please sign in to comment.