Skip to content

Commit 9488eba

Browse files
committed
Bump version: 1.5.2 → 1.6.0
1 parent 07e55c2 commit 9488eba

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
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.5.2
2+
current_version = 1.6.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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Overview
5555
:alt: Supported implementations
5656
:target: https://pypi.org/project/lazy-object-proxy
5757

58-
.. |commits-since| image:: https://img.shields.io/github.amrom.workers.devmits-since/ionelmc/python-lazy-object-proxy/v1.5.2.svg
58+
.. |commits-since| image:: https://img.shields.io/github.amrom.workers.devmits-since/ionelmc/python-lazy-object-proxy/v1.6.0.svg
5959
:alt: Commits since latest release
6060
:target: https://github.com/ionelmc/python-lazy-object-proxy/compare/v1.5.2...master
6161

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
version = release = get_distribution('lazy_object_proxy').version
2828
except Exception:
2929
traceback.print_exc()
30-
version = release = '1.5.2'
30+
version = release = '1.6.0'
3131

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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def read(*names, **kwargs):
6767
use_scm_version={
6868
'local_scheme': 'dirty-tag',
6969
'write_to': 'src/lazy_object_proxy/_version.py',
70-
'fallback_version': '1.5.2',
70+
'fallback_version': '1.6.0',
7171
},
7272
license='BSD-2-Clause',
7373
description='A fast and thorough lazy object proxy.',

src/lazy_object_proxy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@
1818
try:
1919
from ._version import version as __version__
2020
except ImportError:
21-
__version__ = '1.5.2'
21+
__version__ = '1.6.0'
2222

2323
__all__ = "Proxy",

0 commit comments

Comments
 (0)