From 9952180c8a623ef23881bf7b21f756a745630cfb Mon Sep 17 00:00:00 2001 From: Paul Tremberth Date: Thu, 14 Jul 2016 20:36:05 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.14.2=20=E2=86=92=201.14.3?= 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 ff93bcad..50eae113 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.14.2 +current_version = 1.14.3 commit = True tag = True tag_name = v{new_version} diff --git a/docs/conf.py b/docs/conf.py index da93730a..23bb8626 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -53,7 +53,7 @@ # built documents. # # The full version, including alpha/beta/rc tags. -release = '1.14.2' +release = '1.14.3' # The short X.Y version. version = '.'.join(release.split('.')[:2]) diff --git a/setup.py b/setup.py index 0bab41d8..f076d58d 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ setup( name='w3lib', - version='1.14.2', + version='1.14.3', license='BSD', description='Library of web-related functions', author='Scrapy project', diff --git a/w3lib/__init__.py b/w3lib/__init__.py index dfc91ad5..cf3a7c30 100644 --- a/w3lib/__init__.py +++ b/w3lib/__init__.py @@ -1,3 +1,3 @@ -__version__ = "1.14.2" +__version__ = "1.14.3" version_info = tuple(int(v) if v.isdigit() else v for v in __version__.split('.'))