Skip to content

Commit f550fff

Browse files
committed
Merge tag 'v2.3.0'
Bump version: 2.2.1 → 2.3.0
2 parents 3fc3d31 + d3c5ea8 commit f550fff

File tree

5 files changed

+11
-9
lines changed

5 files changed

+11
-9
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 2.2.1
2+
current_version = 2.3.0
33
commit = True
44
tag = True
55
tag_name = v{new_version}

NEWS

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,23 @@
11
w3lib release notes
22
===================
33

4-
2.3.0 (YYYY-MM-DD)
4+
2.3.0 (2025-01-27)
55
------------------
66

77
- Dropped Python 3.8 support (#232).
88

9-
- Added Python 3.13 support (#232).
10-
11-
- Fixed running tests with newer point releases of Python 3.10 and 3.11 (#233).
12-
139
- Removed the following functions, deprecated in 2.0.0:
1410

1511
- ``w3lib.util.str_to_unicode``
1612
- ``w3lib.util.to_native_str``
1713
- ``w3lib.util.unicode_to_str``
1814

15+
(#235).
16+
17+
- Added Python 3.13 support (#232).
18+
19+
- Fixed running tests with newer point releases of Python 3.10 and 3.11 (#233).
20+
1921
- Cleanup and CI improvements (#232, #234).
2022

2123
2.2.1 (2024-06-12)

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
# built documents.
5555
#
5656
# The full version, including alpha/beta/rc tags.
57-
release = "2.2.1"
57+
release = "2.3.0"
5858
# The short X.Y version.
5959
version = ".".join(release.split(".")[:2])
6060

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name="w3lib",
8-
version="2.2.1",
8+
version="2.3.0",
99
license="BSD",
1010
description="Library of web-related functions",
1111
long_description=long_description,

w3lib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version__ = "2.2.1"
1+
__version__ = "2.3.0"
22
version_info = tuple(int(v) if v.isdigit() else v for v in __version__.split("."))

0 commit comments

Comments
 (0)