File tree Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
1
[bumpversion]
2
- current_version = 1.7.0
2
+ current_version = 1.7.1
3
3
commit = True
4
4
tag = True
5
5
Original file line number Diff line number Diff line change @@ -51,9 +51,9 @@ Overview
51
51
:alt: Supported implementations
52
52
:target: https://pypi.org/project/lazy-object-proxy
53
53
54
- .. |commits-since | image :: https://img.shields.io/github/commits-since/ionelmc/python-lazy-object-proxy/v1.7.0 .svg
54
+ .. |commits-since | image :: https://img.shields.io/github/commits-since/ionelmc/python-lazy-object-proxy/v1.7.1 .svg
55
55
:alt: Commits since latest release
56
- :target: https://github.com/ionelmc/python-lazy-object-proxy/compare/v1.7.0 ...master
56
+ :target: https://github.com/ionelmc/python-lazy-object-proxy/compare/v1.7.1 ...master
57
57
58
58
59
59
Original file line number Diff line number Diff line change 27
27
version = release = get_distribution ('lazy_object_proxy' ).version
28
28
except Exception :
29
29
traceback .print_exc ()
30
- version = release = '1.7.0 '
30
+ version = release = '1.7.1 '
31
31
32
32
pygments_style = 'trac'
33
33
templates_path = ['.' ]
Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ def has_ext_modules(self):
75
75
use_scm_version = {
76
76
'local_scheme' : 'dirty-tag' ,
77
77
'write_to' : 'src/lazy_object_proxy/_version.py' ,
78
- 'fallback_version' : '1.7.0 ' ,
78
+ 'fallback_version' : '1.7.1 ' ,
79
79
},
80
80
license = 'BSD-2-Clause' ,
81
81
description = 'A fast and thorough lazy object proxy.' ,
Original file line number Diff line number Diff line change 18
18
try :
19
19
from ._version import version as __version__
20
20
except ImportError :
21
- __version__ = '1.7.0 '
21
+ __version__ = '1.7.1 '
22
22
23
23
__all__ = "Proxy" ,
You can’t perform that action at this time.
0 commit comments