From 5b36b50b678df414e63e5e819350a03723349931 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ionel=20Cristian=20M=C4=83rie=C8=99?= Date: Wed, 26 Oct 2022 16:09:21 +0300 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.7.1=20=E2=86=92=201.8.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- README.rst | 4 ++-- docs/conf.py | 2 +- setup.py | 2 +- src/lazy_object_proxy/__init__.py | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 02fd6ef..9044e83 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.7.1 +current_version = 1.8.0 commit = True tag = True diff --git a/README.rst b/README.rst index ad2e9e7..b3f2282 100644 --- a/README.rst +++ b/README.rst @@ -51,9 +51,9 @@ 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.7.1.svg +.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/python-lazy-object-proxy/v1.8.0.svg :alt: Commits since latest release - :target: https://github.com/ionelmc/python-lazy-object-proxy/compare/v1.7.1...master + :target: https://github.com/ionelmc/python-lazy-object-proxy/compare/v1.8.0...master diff --git a/docs/conf.py b/docs/conf.py index a68bdd6..8483387 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -28,7 +28,7 @@ version = release = get_distribution('lazy_object_proxy').version except Exception: traceback.print_exc() - version = release = '1.7.1' + version = release = '1.8.0' pygments_style = 'trac' templates_path = ['.'] diff --git a/setup.py b/setup.py index 11f2dd8..291e5a4 100755 --- a/setup.py +++ b/setup.py @@ -74,7 +74,7 @@ def read(*names, **kwargs): use_scm_version={ 'local_scheme': 'dirty-tag', 'write_to': 'src/lazy_object_proxy/_version.py', - 'fallback_version': '1.7.1', + 'fallback_version': '1.8.0', }, license='BSD-2-Clause', description='A fast and thorough lazy object proxy.', diff --git a/src/lazy_object_proxy/__init__.py b/src/lazy_object_proxy/__init__.py index ac179d5..c354bcc 100644 --- a/src/lazy_object_proxy/__init__.py +++ b/src/lazy_object_proxy/__init__.py @@ -18,6 +18,6 @@ try: from ._version import version as __version__ except ImportError: - __version__ = '1.7.1' + __version__ = '1.8.0' __all__ = ("Proxy",)