Skip to content

Commit

Permalink
Bump version: 2.2.1 → 2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wRAR committed Jan 27, 2025
1 parent 8d560ad commit d3c5ea8
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 2.2.1
current_version = 2.3.0
commit = True
tag = True
tag_name = v{new_version}
Expand Down
12 changes: 7 additions & 5 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,21 +1,23 @@
w3lib release notes
===================

2.3.0 (YYYY-MM-DD)
2.3.0 (2025-01-27)
------------------

- Dropped Python 3.8 support (#232).

- Added Python 3.13 support (#232).

- Fixed running tests with newer point releases of Python 3.10 and 3.11 (#233).

- Removed the following functions, deprecated in 2.0.0:

- ``w3lib.util.str_to_unicode``
- ``w3lib.util.to_native_str``
- ``w3lib.util.unicode_to_str``

(#235).

- Added Python 3.13 support (#232).

- Fixed running tests with newer point releases of Python 3.10 and 3.11 (#233).

- Cleanup and CI improvements (#232, #234).

2.2.1 (2024-06-12)
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
# built documents.
#
# The full version, including alpha/beta/rc tags.
release = "2.2.1"
release = "2.3.0"
# The short X.Y version.
version = ".".join(release.split(".")[:2])

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name="w3lib",
version="2.2.1",
version="2.3.0",
license="BSD",
description="Library of web-related functions",
long_description=long_description,
Expand Down
2 changes: 1 addition & 1 deletion w3lib/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = "2.2.1"
__version__ = "2.3.0"
version_info = tuple(int(v) if v.isdigit() else v for v in __version__.split("."))

0 comments on commit d3c5ea8

Please sign in to comment.