From d7c3307f8f7e30cdc91d48987e57c42ca04a5df3 Mon Sep 17 00:00:00 2001 From: Andrey Rakhmatullin Date: Wed, 5 Jun 2024 12:22:42 +0500 Subject: [PATCH] =?UTF-8?q?Bump=20version:=202.1.2=20=E2=86=92=202.2.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- NEWS | 2 +- docs/conf.py | 2 +- setup.py | 2 +- w3lib/__init__.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 6670ad6..480fc5a 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.1.2 +current_version = 2.2.0 commit = True tag = True tag_name = v{new_version} diff --git a/NEWS b/NEWS index d5b6931..68bee65 100644 --- a/NEWS +++ b/NEWS @@ -1,7 +1,7 @@ w3lib release notes =================== -2.2.0 (YYYY-MM-DD) +2.2.0 (2024-06-05) ------------------ - Dropped Python 3.7 support (#214). diff --git a/docs/conf.py b/docs/conf.py index d01e680..7cd196d 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -54,7 +54,7 @@ # built documents. # # The full version, including alpha/beta/rc tags. -release = "2.1.2" +release = "2.2.0" # The short X.Y version. version = ".".join(release.split(".")[:2]) diff --git a/setup.py b/setup.py index 1e1019d..d7bf9d1 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name="w3lib", - version="2.1.2", + version="2.2.0", license="BSD", description="Library of web-related functions", long_description=long_description, diff --git a/w3lib/__init__.py b/w3lib/__init__.py index dd7a1fc..3bc980e 100644 --- a/w3lib/__init__.py +++ b/w3lib/__init__.py @@ -1,2 +1,2 @@ -__version__ = "2.1.2" +__version__ = "2.2.0" version_info = tuple(int(v) if v.isdigit() else v for v in __version__.split("."))