Skip to content

Commit

Permalink
Bump version: 1.5.2 → 1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ionelmc committed Mar 22, 2021
1 parent 07e55c2 commit 9488eba
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.5.2
current_version = 1.6.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}'

2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ Overview
:alt: Supported implementations
:target: https://pypi.org/project/lazy-object-proxy

.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/python-lazy-object-proxy/v1.5.2.svg
.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/python-lazy-object-proxy/v1.6.0.svg
:alt: Commits since latest release
:target: https://github.com/ionelmc/python-lazy-object-proxy/compare/v1.5.2...master

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
version = release = get_distribution('lazy_object_proxy').version
except Exception:
traceback.print_exc()
version = release = '1.5.2'
version = release = '1.6.0'

pygments_style = 'trac'
templates_path = ['.']
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def read(*names, **kwargs):
use_scm_version={
'local_scheme': 'dirty-tag',
'write_to': 'src/lazy_object_proxy/_version.py',
'fallback_version': '1.5.2',
'fallback_version': '1.6.0',
},
license='BSD-2-Clause',
description='A fast and thorough lazy object proxy.',
Expand Down
2 changes: 1 addition & 1 deletion src/lazy_object_proxy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
try:
from ._version import version as __version__
except ImportError:
__version__ = '1.5.2'
__version__ = '1.6.0'

__all__ = "Proxy",

0 comments on commit 9488eba

Please sign in to comment.