Skip to content

Commit

Permalink
Bump version: 1.4.0 → 1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ionelmc committed May 10, 2019
1 parent 2cfbc48 commit bc7bdf3
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .bumpversion.cfg
@@ -1,11 +1,11 @@
[bumpversion]
current_version = 1.4.0
current_version = 1.4.1
commit = True
tag = True

[bumpversion:file:setup.py]
search = version='{current_version}'
replace = version='{new_version}'
search = 'fallback_version': '{current_version}'
replace = 'fallback_version': '{new_version}'

[bumpversion:file:README.rst]
search = v{current_version}.
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Expand Up @@ -43,9 +43,9 @@ Overview
:alt: PyPI Package latest release
:target: https://pypi.org/project/lazy-object-proxy

.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/python-lazy-object-proxy/v1.4.0.svg
.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/python-lazy-object-proxy/v1.4.1.svg
:alt: Commits since latest release
:target: https://github.com/ionelmc/python-lazy-object-proxy/compare/v1.4.0...master
:target: https://github.com/ionelmc/python-lazy-object-proxy/compare/v1.4.1...master

.. |wheel| image:: https://img.shields.io/pypi/wheel/lazy-object-proxy.svg
:alt: PyPI Wheel
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Expand Up @@ -26,7 +26,7 @@
year = '2014-2019'
author = 'Ionel Cristian Mărieș'
copyright = '{0}, {1}'.format(year, author)
version = release = '1.4.0'
version = release = '1.4.1'

pygments_style = 'trac'
templates_path = ['.']
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -63,7 +63,7 @@ def _unavailable(self, e):
use_scm_version={
'local_scheme': 'dirty-tag',
'write_to': 'src/lazy_object_proxy/_version.py',
'fallback_version': '1.4.0',
'fallback_version': '1.4.1',
},
license='BSD 2-Clause License',
description='A fast and thorough lazy object proxy.',
Expand Down
2 changes: 1 addition & 1 deletion src/lazy_object_proxy/__init__.py
Expand Up @@ -18,6 +18,6 @@
try:
from ._version import version as __version__
except ImportError:
__version__ = '1.4.0'
__version__ = '1.4.1'

__all__ = "Proxy",

0 comments on commit bc7bdf3

Please sign in to comment.