Skip to content

Commit

Permalink
Bump version: 2.1.1 → 2.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
wRAR committed Aug 3, 2023
1 parent 534a573 commit af8ed20
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 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.1.1
current_version = 2.1.2
commit = True
tag = True
tag_name = v{new_version}
Expand Down
2 changes: 1 addition & 1 deletion NEWS
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
w3lib release notes
===================

2.1.2 (YYYY-MM-DD)
2.1.2 (2023-08-03)
------------------

- Fix test failures on Python 3.11.4+ (#212, #213).
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
# built documents.
#
# The full version, including alpha/beta/rc tags.
release = '2.1.1'
release = '2.1.2'
# 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 @@ -3,7 +3,7 @@

setup(
name="w3lib",
version="2.1.1",
version="2.1.2",
license="BSD",
description="Library of web-related functions",
author="Scrapy project",
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.1.1"
__version__ = "2.1.2"
version_info = tuple(int(v) if v.isdigit() else v for v in __version__.split("."))

0 comments on commit af8ed20

Please sign in to comment.