Skip to content

Commit ac1caee

Browse files
committed
Bump version: 3.0.0 → 4.0.0
1 parent ddfe3e6 commit ac1caee

5 files changed

Lines changed: 12 additions & 12 deletions

File tree

.bumpversion.cfg

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[bumpversion]
2-
current_version = 3.0.0
2+
current_version = 4.0.0
33
commit = True
44
tag = True
55

66
[bumpversion:file:setup.py]
7-
search = version='{current_version}'
8-
replace = version='{new_version}'
7+
search = version="{current_version}"
8+
replace = version="{new_version}"
99

1010
[bumpversion:file (badge):README.rst]
1111
search = /v{current_version}.svg
@@ -16,9 +16,9 @@ search = /v{current_version}...master
1616
replace = /v{new_version}...master
1717

1818
[bumpversion:file:docs/conf.py]
19-
search = version = release = '{current_version}'
20-
replace = version = release = '{new_version}'
19+
search = version = release = "{current_version}"
20+
replace = version = release = "{new_version}"
2121

2222
[bumpversion:file:src/holdup/__init__.py]
23-
search = __version__ = '{current_version}'
24-
replace = __version__ = '{new_version}'
23+
search = __version__ = "{current_version}"
24+
replace = __version__ = "{new_version}"

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ Overview
4747
:alt: Supported implementations
4848
:target: https://pypi.org/project/holdup
4949

50-
.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/python-holdup/v3.0.0.svg
50+
.. |commits-since| image:: https://img.shields.io/github/commits-since/ionelmc/python-holdup/v4.0.0.svg
5151
:alt: Commits since latest release
52-
:target: https://github.com/ionelmc/python-holdup/compare/v3.0.0...master
52+
:target: https://github.com/ionelmc/python-holdup/compare/v4.0.0...master
5353

5454

5555

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
year = "2016-2023"
1919
author = "Ionel Cristian Mărieș"
2020
copyright = "{0}, {1}".format(year, author)
21-
version = release = "3.0.0"
21+
version = release = "4.0.0"
2222

2323
pygments_style = "trac"
2424
templates_path = ["."]

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def read(*names, **kwargs):
2020

2121
setup(
2222
name="holdup",
23-
version="3.0.0",
23+
version="4.0.0",
2424
license="BSD-2-Clause",
2525
description=(
2626
"A tool to wait for services and execute command. Useful for Docker containers that depend on slow to start services "

src/holdup/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "3.0.0"
1+
__version__ = "4.0.0"

0 commit comments

Comments
 (0)