Skip to content

Commit

Permalink
Bump version: 8.1.0 → 8.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
SethMMorton committed Sep 1, 2022
1 parent 5c52a88 commit 48b9168
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
Unreleased
---

[8.2.0] - 2022-09-01
---

### Changed
- Auto-coerce `pathlib.Path` objects to `str` since it is the least astonishing
behavior ([@Gilthans](https://github.com/Gilthans), issues #152, #153)
Expand Down Expand Up @@ -603,6 +606,7 @@ a pipeline by which to filter
- Sorting algorithm to support floats (including exponentials) and basic version number support

<!---Comparison links-->
[8.2.0]: https://github.com/SethMMorton/natsort/compare/8.1.0...8.2.0
[8.1.0]: https://github.com/SethMMorton/natsort/compare/8.0.2...8.1.0
[8.0.2]: https://github.com/SethMMorton/natsort/compare/8.0.1...8.0.2
[8.0.1]: https://github.com/SethMMorton/natsort/compare/8.0.0...8.0.1
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
# built documents.
#
# The full version, including alpha/beta/rc tags.
release = "8.1.0"
release = "8.2.0"
# 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 @@ -23,7 +23,7 @@
from natsort.ns_enum import NSType, ns
from natsort.utils import KeyType, NatsortInType, NatsortOutType, chain_functions

__version__ = "8.1.0"
__version__ = "8.2.0"

__all__ = [
"natsort_key",
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 8.1.0
current_version = 8.2.0
commit = True
tag = True
tag_name = {new_version}
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

setup(
name="natsort",
version="8.1.0",
version="8.2.0",
packages=find_packages(),
entry_points={"console_scripts": ["natsort = natsort.__main__:main"]},
python_requires=">=3.6",
Expand Down

0 comments on commit 48b9168

Please sign in to comment.