Skip to content

Commit 6057cac

Browse files
committed
Bump version: 2.3.0 → 2.3.1
1 parent f550fff commit 6057cac

File tree

5 files changed

+9
-4
lines changed

5 files changed

+9
-4
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 2.3.0
2+
current_version = 2.3.1
33
commit = True
44
tag = True
55
tag_name = v{new_version}

NEWS

+5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
w3lib release notes
22
===================
33

4+
2.3.1 (2025-01-27)
5+
------------------
6+
7+
- Fix a merge error, no code changes.
8+
49
2.3.0 (2025-01-27)
510
------------------
611

docs/conf.py

+1-1
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.3.0"
57+
release = "2.3.1"
5858
# The short X.Y version.
5959
version = ".".join(release.split(".")[:2])
6060

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

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

w3lib/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version__ = "2.3.0"
1+
__version__ = "2.3.1"
22
version_info = tuple(int(v) if v.isdigit() else v for v in __version__.split("."))

0 commit comments

Comments
 (0)