From d70ce444685248299540b7876c9d8f42dea88bc3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ionel=20Cristian=20M=C4=83rie=C8=99?= Date: Mon, 6 May 2019 16:04:42 +0300 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.3.1=20=E2=86=92=201.4.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 3 ++- README.rst | 4 ++-- docs/conf.py | 2 +- setup.py | 2 +- src/lazy_object_proxy/__init__.py | 2 +- 5 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index e627a86..109cac7 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.3.1 +current_version = 1.4.0 commit = True tag = True @@ -18,3 +18,4 @@ replace = version = release = '{new_version}' [bumpversion:file:src/lazy_object_proxy/__init__.py] search = __version__ = '{current_version}' replace = __version__ = '{new_version}' + diff --git a/README.rst b/README.rst index fd21aaa..7eba066 100644 --- a/README.rst +++ b/README.rst @@ -43,9 +43,9 @@ Overview :alt: PyPI Package latest release :target: https://pypi.org/project/lazy-object-proxy -.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/python-lazy-object-proxy/v1.3.1.svg +.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/python-lazy-object-proxy/v1.4.0.svg :alt: Commits since latest release - :target: https://github.com/ionelmc/python-lazy-object-proxy/compare/v1.3.1...master + :target: https://github.com/ionelmc/python-lazy-object-proxy/compare/v1.4.0...master .. |wheel| image:: https://img.shields.io/pypi/wheel/lazy-object-proxy.svg :alt: PyPI Wheel diff --git a/docs/conf.py b/docs/conf.py index 470f452..e6ff874 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -26,7 +26,7 @@ year = '2014-2019' author = 'Ionel Cristian Mărieș' copyright = '{0}, {1}'.format(year, author) -version = release = '1.3.1' +version = release = '1.4.0' pygments_style = 'trac' templates_path = ['.'] diff --git a/setup.py b/setup.py index 2187106..1c040fe 100644 --- a/setup.py +++ b/setup.py @@ -60,7 +60,7 @@ def _unavailable(self, e): setup( name='lazy-object-proxy', - version='1.3.1', + version='1.4.0', license='BSD 2-Clause License', description='A fast and thorough lazy object proxy.', long_description='%s\n%s' % ( diff --git a/src/lazy_object_proxy/__init__.py b/src/lazy_object_proxy/__init__.py index 1fd4f87..caa2812 100644 --- a/src/lazy_object_proxy/__init__.py +++ b/src/lazy_object_proxy/__init__.py @@ -15,6 +15,6 @@ else: copyreg.constructor(identity) -__version__ = "1.3.1" +__version__ = "__version__ = '1.4.0'" __all__ = "Proxy",