From 03c28d26675646a3e98588db640bb039b89b356b Mon Sep 17 00:00:00 2001 From: Paul Tremberth Date: Fri, 29 Jul 2016 18:59:48 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.14.3=20=E2=86=92=201.15.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 50eae113..3b661413 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.14.3 +current_version = 1.15.0 commit = True tag = True tag_name = v{new_version} diff --git a/docs/conf.py b/docs/conf.py index 23bb8626..623f3c52 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.3' +release = '1.15.0' # The short X.Y version. version = '.'.join(release.split('.')[:2]) diff --git a/setup.py b/setup.py index f076d58d..531dde99 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ setup( name='w3lib', - version='1.14.3', + version='1.15.0', license='BSD', description='Library of web-related functions', author='Scrapy project', diff --git a/w3lib/__init__.py b/w3lib/__init__.py index cf3a7c30..13b9e2e0 100644 --- a/w3lib/__init__.py +++ b/w3lib/__init__.py @@ -1,3 +1,3 @@ -__version__ = "1.14.3" +__version__ = "1.15.0" version_info = tuple(int(v) if v.isdigit() else v for v in __version__.split('.'))