Skip to content

Commit 5e0cdbc

Browse files
committed
Bump to 26.4.0.dev
1 parent 40634c6 commit 5e0cdbc

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pyproject.toml

+2-2
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 = "26.3.0"
15+
version = "26.4.0.dev"
1616
authors = [
1717
{ name = "PyZMQ Contributors", email = "[email protected]" },
1818
{ name = "Brian E. Granger" },
@@ -119,7 +119,7 @@ skip = ["zmq/__init__.py"]
119119
github_url = "https://github.com/zeromq/pyzmq"
120120

121121
[tool.tbump.version]
122-
current = "26.3.0"
122+
current = "26.4.0.dev"
123123
regex = '''
124124
(?P<major>\d+)
125125
\.

zmq/sugar/version.py

+1-1
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 = "26.3.0"
12+
__version__: str = "26.4.0.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)