File tree Expand file tree Collapse file tree 5 files changed +11
-9
lines changed Expand file tree Collapse file tree 5 files changed +11
-9
lines changed Original file line number Diff line number Diff line change 1
1
[bumpversion]
2
- current_version = 2.2.1
2
+ current_version = 2.3.0
3
3
commit = True
4
4
tag = True
5
5
tag_name = v{new_version}
Original file line number Diff line number Diff line change 1
1
w3lib release notes
2
2
===================
3
3
4
- 2.3.0 (YYYY-MM-DD )
4
+ 2.3.0 (2025-01-27 )
5
5
------------------
6
6
7
7
- Dropped Python 3.8 support (#232).
8
8
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
-
13
9
- Removed the following functions, deprecated in 2.0.0:
14
10
15
11
- ``w3lib.util.str_to_unicode``
16
12
- ``w3lib.util.to_native_str``
17
13
- ``w3lib.util.unicode_to_str``
18
14
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
+
19
21
- Cleanup and CI improvements (#232, #234).
20
22
21
23
2.2.1 (2024-06-12)
Original file line number Diff line number Diff line change 54
54
# built documents.
55
55
#
56
56
# The full version, including alpha/beta/rc tags.
57
- release = "2.2.1 "
57
+ release = "2.3.0 "
58
58
# The short X.Y version.
59
59
version = "." .join (release .split ("." )[:2 ])
60
60
Original file line number Diff line number Diff line change 5
5
6
6
setup (
7
7
name = "w3lib" ,
8
- version = "2.2.1 " ,
8
+ version = "2.3.0 " ,
9
9
license = "BSD" ,
10
10
description = "Library of web-related functions" ,
11
11
long_description = long_description ,
Original file line number Diff line number Diff line change 1
- __version__ = "2.2.1 "
1
+ __version__ = "2.3.0 "
2
2
version_info = tuple (int (v ) if v .isdigit () else v for v in __version__ .split ("." ))
You can’t perform that action at this time.
0 commit comments