Skip to content

Commit d70ce44

Browse files
committed
Bump version: 1.3.1 → 1.4.0
1 parent d5892fe commit d70ce44

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

.bumpversion.cfg

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.3.1
2+
current_version = 1.4.0
33
commit = True
44
tag = True
55

@@ -18,3 +18,4 @@ replace = version = release = '{new_version}'
1818
[bumpversion:file:src/lazy_object_proxy/__init__.py]
1919
search = __version__ = '{current_version}'
2020
replace = __version__ = '{new_version}'
21+

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ Overview
4343
:alt: PyPI Package latest release
4444
:target: https://pypi.org/project/lazy-object-proxy
4545

46-
.. |commits-since| image:: https://img.shields.io/github.amrom.workers.devmits-since/ionelmc/python-lazy-object-proxy/v1.3.1.svg
46+
.. |commits-since| image:: https://img.shields.io/github.amrom.workers.devmits-since/ionelmc/python-lazy-object-proxy/v1.4.0.svg
4747
:alt: Commits since latest release
48-
:target: https://github.com/ionelmc/python-lazy-object-proxy/compare/v1.3.1...master
48+
:target: https://github.com/ionelmc/python-lazy-object-proxy/compare/v1.4.0...master
4949

5050
.. |wheel| image:: https://img.shields.io/pypi/wheel/lazy-object-proxy.svg
5151
:alt: PyPI Wheel

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
year = '2014-2019'
2727
author = 'Ionel Cristian Mărieș'
2828
copyright = '{0}, {1}'.format(year, author)
29-
version = release = '1.3.1'
29+
version = release = '1.4.0'
3030

3131
pygments_style = 'trac'
3232
templates_path = ['.']

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def _unavailable(self, e):
6060

6161
setup(
6262
name='lazy-object-proxy',
63-
version='1.3.1',
63+
version='1.4.0',
6464
license='BSD 2-Clause License',
6565
description='A fast and thorough lazy object proxy.',
6666
long_description='%s\n%s' % (

src/lazy_object_proxy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
else:
1616
copyreg.constructor(identity)
1717

18-
__version__ = "1.3.1"
18+
__version__ = "__version__ = '1.4.0'"
1919

2020
__all__ = "Proxy",

0 commit comments

Comments
 (0)