Skip to content

Commit c018b9d

Browse files
committed
Bump to 27.0.2.dev
1 parent 58fda5e commit c018b9d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ build-backend = "scikit_build_core.build"
1212
# ref: https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html
1313
[project]
1414
name = "pyzmq"
15-
version = "27.0.1"
15+
version = "27.0.2.dev"
1616
authors = [
1717
{ name = "PyZMQ Contributors", email = "[email protected]" },
1818
{ name = "Brian E. Granger" },
@@ -124,7 +124,7 @@ skip = ["zmq/__init__.py"]
124124
github_url = "https://github.com/zeromq/pyzmq"
125125

126126
[tool.tbump.version]
127-
current = "27.0.1"
127+
current = "27.0.2.dev"
128128
regex = '''
129129
(?P<major>\d+)
130130
\.

zmq/sugar/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
from zmq.backend import zmq_version_info
1111

12-
__version__: str = "27.0.1"
12+
__version__: str = "27.0.2.dev"
1313
_version_pat = re.compile(r"(\d+)\.(\d+)\.(\d+)(.*)")
1414
_match = cast(Match, _version_pat.match(__version__))
1515
_version_groups = _match.groups()

0 commit comments

Comments
 (0)