Skip to content

Commit 7d47b27

Browse files
committed
Bump version: 1.7.0 → 1.7.1
1 parent 6c562fd commit 7d47b27

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.bumpversion.cfg

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

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@ Overview
5151
:alt: Supported implementations
5252
:target: https://pypi.org/project/lazy-object-proxy
5353

54-
.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/python-lazy-object-proxy/v1.7.0.svg
54+
.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/python-lazy-object-proxy/v1.7.1.svg
5555
:alt: Commits since latest release
56-
:target: https://github.com/ionelmc/python-lazy-object-proxy/compare/v1.7.0...master
56+
:target: https://github.com/ionelmc/python-lazy-object-proxy/compare/v1.7.1...master
5757

5858

5959

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.7.0'
30+
version = release = '1.7.1'
3131

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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def has_ext_modules(self):
7575
use_scm_version={
7676
'local_scheme': 'dirty-tag',
7777
'write_to': 'src/lazy_object_proxy/_version.py',
78-
'fallback_version': '1.7.0',
78+
'fallback_version': '1.7.1',
7979
},
8080
license='BSD-2-Clause',
8181
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.7.0'
21+
__version__ = '1.7.1'
2222

2323
__all__ = "Proxy",

0 commit comments

Comments
 (0)