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("."))