Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 4.0.0rc4
current_version = 4.0.0rc5
commit = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
serialize = {major}.{minor}.{patch}
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
author = "Jonatan Martens"

# The full version, including alpha/beta/rc tags
release = "4.0.0rc4"
release = "4.0.0rc5"

# -- General configuration ---------------------------------------------------

Expand Down Expand Up @@ -61,7 +61,7 @@
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ["_static"]

version = "4.0.0rc4"
version = "4.0.0rc5"

master_doc = "index"

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pyzeebe"
version = "4.0.0rc4"
version = "4.0.0rc5"
description = "Zeebe client api"
authors = ["Jonatan Martens <[email protected]>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion pyzeebe/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "4.0.0rc4"
__version__ = "4.0.0rc5"

from pyzeebe import errors
from pyzeebe.channel import *
Expand Down