Skip to content

Commit

Permalink
Bump version: 1.3.1 → 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ionelmc committed May 6, 2019
1 parent d5892fe commit d70ce44
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion .bumpversion.cfg
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.3.1
current_version = 1.4.0
commit = True
tag = True

Expand All @@ -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}'

4 changes: 2 additions & 2 deletions README.rst
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Expand Up @@ -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 = ['.']
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -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' % (
Expand Down
2 changes: 1 addition & 1 deletion src/lazy_object_proxy/__init__.py
Expand Up @@ -15,6 +15,6 @@
else:
copyreg.constructor(identity)

__version__ = "1.3.1"
__version__ = "__version__ = '1.4.0'"

__all__ = "Proxy",

0 comments on commit d70ce44

Please sign in to comment.