From 81b54a5ea894227a057297b8271e6577803295f7 Mon Sep 17 00:00:00 2001 From: Mikhail Korobov Date: Thu, 11 Aug 2022 18:50:39 +0500 Subject: [PATCH] =?UTF-8?q?Bump=20version:=202.0.0=20=E2=86=92=202.0.1?= 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 d55c6568..8f78943a 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.0.0 +current_version = 2.0.1 commit = True tag = True tag_name = v{new_version} diff --git a/docs/conf.py b/docs/conf.py index 1986b648..27c1af70 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.0' +release = '2.0.1' # The short X.Y version. version = '.'.join(release.split('.')[:2]) diff --git a/setup.py b/setup.py index dc40befe..a351479c 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ setup( name="w3lib", - version="2.0.0", + version="2.0.1", license="BSD", description="Library of web-related functions", author="Scrapy project", diff --git a/w3lib/__init__.py b/w3lib/__init__.py index fb834222..fb5f52cb 100644 --- a/w3lib/__init__.py +++ b/w3lib/__init__.py @@ -1,2 +1,2 @@ -__version__ = "2.0.0" +__version__ = "2.0.1" version_info = tuple(int(v) if v.isdigit() else v for v in __version__.split("."))