Skip to content

Commit 14330a1

Browse files
committed
Bump version: 1.10.0 → 1.11.0
1 parent a210b0c commit 14330a1

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.10.0
2+
current_version = 1.11.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_theme: furo
4141
test_matrix_separate_coverage: 'yes'
4242
tests_inside_package: 'no'
43-
version: 1.10.0
43+
version: 1.11.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
@@ -45,9 +45,9 @@ Overview
4545
:alt: Supported implementations
4646
:target: https://pypi.org/project/lazy-object-proxy
4747

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

5252

5353

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
import traceback
2424

2525
traceback.print_exc()
26-
version = release = '1.10.0'
26+
version = release = '1.11.0'
2727

2828
pygments_style = 'trac'
2929
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.10.0',
81+
'fallback_version': '1.11.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.10.0'
21+
__version__ = '1.11.0'
2222

2323
__all__ = ('Proxy',)

0 commit comments

Comments
 (0)