Skip to content

Commit c56c68b

Browse files
committed
Bump version: 1.8.0 → 1.9.0
1 parent 89cccd5 commit c56c68b

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.bumpversion.cfg

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

README.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@ Overview
5151
:alt: Supported implementations
5252
:target: https://pypi.org/project/lazy-object-proxy
5353

54-
.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/python-lazy-object-proxy/v1.8.0.svg
54+
.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/python-lazy-object-proxy/v1.9.0.svg
5555
:alt: Commits since latest release
56-
:target: https://github.com/ionelmc/python-lazy-object-proxy/compare/v1.8.0...master
56+
:target: https://github.com/ionelmc/python-lazy-object-proxy/compare/v1.9.0...master
5757

5858

5959

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
version = release = get_distribution('lazy_object_proxy').version
2929
except Exception:
3030
traceback.print_exc()
31-
version = release = '1.8.0'
31+
version = release = '1.9.0'
3232

3333
pygments_style = 'trac'
3434
templates_path = ['.']

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def read(*names, **kwargs):
7474
use_scm_version={
7575
'local_scheme': 'dirty-tag',
7676
'write_to': 'src/lazy_object_proxy/_version.py',
77-
'fallback_version': '1.8.0',
77+
'fallback_version': '1.9.0',
7878
},
7979
license='BSD-2-Clause',
8080
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.8.0'
21+
__version__ = '1.9.0'
2222

2323
__all__ = ("Proxy",)

0 commit comments

Comments
 (0)