From aa46e846fa2eb7cb845a07e122f2984267551098 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ionel=20Cristian=20M=C4=83rie=C8=99?= Date: Fri, 15 Dec 2023 15:49:30 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.9.0=20=E2=86=92=201.10.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- .cookiecutterrc | 2 +- README.rst | 4 ++-- docs/conf.py | 2 +- setup.py | 2 +- src/lazy_object_proxy/__init__.py | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index cde88f5..f4dedb1 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.9.0 +current_version = 1.10.0 commit = True tag = True diff --git a/.cookiecutterrc b/.cookiecutterrc index c85b08b..29789c1 100644 --- a/.cookiecutterrc +++ b/.cookiecutterrc @@ -40,7 +40,7 @@ default_context: sphinx_doctest: 'no' sphinx_theme: sphinx-py3doc-enhanced-theme test_matrix_separate_coverage: 'yes' - version: 1.9.0 + version: 1.10.0 version_manager: bump2version website: https://blog.ionelmc.ro year_from: '2014' diff --git a/README.rst b/README.rst index 96b5b0a..cac8bba 100644 --- a/README.rst +++ b/README.rst @@ -47,9 +47,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.9.0.svg +.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/python-lazy-object-proxy/v1.10.0.svg :alt: Commits since latest release - :target: https://github.com/ionelmc/python-lazy-object-proxy/compare/v1.9.0...master + :target: https://github.com/ionelmc/python-lazy-object-proxy/compare/v1.10.0...master diff --git a/docs/conf.py b/docs/conf.py index c450dd4..f6d031a 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -25,7 +25,7 @@ version = release = get_distribution('lazy_object_proxy').version except Exception: traceback.print_exc() - version = release = '1.9.0' + version = release = '1.10.0' pygments_style = 'trac' templates_path = ['.'] diff --git a/setup.py b/setup.py index 4580214..30f84c6 100755 --- a/setup.py +++ b/setup.py @@ -78,7 +78,7 @@ def read(*names, **kwargs): use_scm_version={ 'local_scheme': 'dirty-tag', 'write_to': 'src/lazy_object_proxy/_version.py', - 'fallback_version': '1.9.0', + 'fallback_version': '1.10.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 c431e17..50b9cae 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.9.0' + __version__ = '1.10.0' __all__ = ('Proxy',)