Skip to content

Commit 0371125

Browse files
committed
Bump version: 1.4.3 → 1.5.0
1 parent cf47b28 commit 0371125

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.4.3
2+
current_version = 1.5.0
33
commit = True
44
tag = True
55

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ Overview
4343
:alt: PyPI Package latest release
4444
:target: https://pypi.org/project/lazy-object-proxy
4545

46-
.. |commits-since| image:: https://img.shields.io/github.amrom.workers.devmits-since/ionelmc/python-lazy-object-proxy/v1.4.3.svg
46+
.. |commits-since| image:: https://img.shields.io/github.amrom.workers.devmits-since/ionelmc/python-lazy-object-proxy/v1.5.0.svg
4747
:alt: Commits since latest release
48-
:target: https://github.com/ionelmc/python-lazy-object-proxy/compare/v1.4.3...master
48+
:target: https://github.com/ionelmc/python-lazy-object-proxy/compare/v1.5.0...master
4949

5050
.. |wheel| image:: https://img.shields.io/pypi/wheel/lazy-object-proxy.svg
5151
:alt: PyPI Wheel

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
version = release = get_distribution('lazy_object_proxy').version
3232
except Exception:
3333
traceback.print_exc()
34-
version = release = '1.4.3'
34+
version = release = '1.5.0'
3535

3636
pygments_style = 'trac'
3737
templates_path = ['.']

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def _unavailable(self, e):
6868
use_scm_version={
6969
'local_scheme': 'dirty-tag',
7070
'write_to': 'src/lazy_object_proxy/_version.py',
71-
'fallback_version': '1.4.3',
71+
'fallback_version': '1.5.0',
7272
},
7373
license='BSD-2-Clause',
7474
description='A fast and thorough lazy object proxy.',

src/lazy_object_proxy/__init__.py

Lines changed: 1 addition & 1 deletion
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.4.3'
21+
__version__ = '1.5.0'
2222

2323
__all__ = "Proxy",

0 commit comments

Comments
 (0)