From a6e8c8dc340da17b3127943646a402010379538d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adri=C3=A1n=20Chaves?= Date: Mon, 28 Nov 2022 15:48:21 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=202.0.1=20=E2=86=92=202.1.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- docs/conf.py | 2 +- setup.py | 2 +- w3lib/__init__.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 8f78943a..75cec617 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.0.1 +current_version = 2.1.0 commit = True tag = True tag_name = v{new_version} diff --git a/docs/conf.py b/docs/conf.py index 27c1af70..d6d4564b 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -53,7 +53,7 @@ # built documents. # # The full version, including alpha/beta/rc tags. -release = '2.0.1' +release = '2.1.0' # The short X.Y version. version = '.'.join(release.split('.')[:2]) diff --git a/setup.py b/setup.py index 7fdb3b1c..828c07a3 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ setup( name="w3lib", - version="2.0.1", + version="2.1.0", license="BSD", description="Library of web-related functions", author="Scrapy project", diff --git a/w3lib/__init__.py b/w3lib/__init__.py index fb5f52cb..0e994121 100644 --- a/w3lib/__init__.py +++ b/w3lib/__init__.py @@ -1,2 +1,2 @@ -__version__ = "2.0.1" +__version__ = "2.1.0" version_info = tuple(int(v) if v.isdigit() else v for v in __version__.split("."))