Skip to content

Commit aa46e84

Browse files
committed
Bump version: 1.9.0 → 1.10.0
1 parent 7b32ae5 commit aa46e84

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.9.0
2+
current_version = 1.10.0
33
commit = True
44
tag = True
55

.cookiecutterrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ default_context:
4040
sphinx_doctest: 'no'
4141
sphinx_theme: sphinx-py3doc-enhanced-theme
4242
test_matrix_separate_coverage: 'yes'
43-
version: 1.9.0
43+
version: 1.10.0
4444
version_manager: bump2version
4545
website: https://blog.ionelmc.ro
4646
year_from: '2014'

README.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ Overview
4747
:alt: Supported implementations
4848
:target: https://pypi.org/project/lazy-object-proxy
4949

50-
.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/python-lazy-object-proxy/v1.9.0.svg
50+
.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/python-lazy-object-proxy/v1.10.0.svg
5151
:alt: Commits since latest release
52-
:target: https://github.com/ionelmc/python-lazy-object-proxy/compare/v1.9.0...master
52+
:target: https://github.com/ionelmc/python-lazy-object-proxy/compare/v1.10.0...master
5353

5454

5555

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
version = release = get_distribution('lazy_object_proxy').version
2626
except Exception:
2727
traceback.print_exc()
28-
version = release = '1.9.0'
28+
version = release = '1.10.0'
2929

3030
pygments_style = 'trac'
3131
templates_path = ['.']

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def read(*names, **kwargs):
7878
use_scm_version={
7979
'local_scheme': 'dirty-tag',
8080
'write_to': 'src/lazy_object_proxy/_version.py',
81-
'fallback_version': '1.9.0',
81+
'fallback_version': '1.10.0',
8282
},
8383
license='BSD-2-Clause',
8484
description='A fast and thorough lazy object proxy.',

src/lazy_object_proxy/__init__.py

+1-1
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.9.0'
21+
__version__ = '1.10.0'
2222

2323
__all__ = ('Proxy',)

0 commit comments

Comments
 (0)