Skip to content

Commit

Permalink
Bump version: 1.9.0 → 1.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ionelmc committed Dec 15, 2023
1 parent 7b32ae5 commit aa46e84
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.9.0
current_version = 1.10.0
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion .cookiecutterrc
Expand Up @@ -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'
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Expand Up @@ -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



Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Expand Up @@ -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 = ['.']
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -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.',
Expand Down
2 changes: 1 addition & 1 deletion src/lazy_object_proxy/__init__.py
Expand Up @@ -18,6 +18,6 @@
try:
from ._version import version as __version__
except ImportError:
__version__ = '1.9.0'
__version__ = '1.10.0'

__all__ = ('Proxy',)

0 comments on commit aa46e84

Please sign in to comment.