Skip to content

Commit a2a8a27

Browse files
committed
Bump to 26.0.0a4
1 parent 0a940b6 commit a2a8a27

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
@@ -16,7 +16,7 @@ build-backend = "scikit_build_core.build"
1616
# ref: https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html
1717
[project]
1818
name = "pyzmq"
19-
version = "26.0.0a3"
19+
version = "26.0.0a4"
2020
authors = [
2121
{ name = "PyZMQ Contributors", email = "[email protected]" },
2222
{ name = "Brian E. Granger" },
@@ -89,7 +89,7 @@ skip = ["zmq/__init__.py"]
8989
github_url = "https://github.com/zeromq/pyzmq"
9090

9191
[tool.tbump.version]
92-
current = "26.0.0a3"
92+
current = "26.0.0a4"
9393
regex = '''
9494
(?P<major>\d+)
9595
\.

zmq/sugar/version.py

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

99
from zmq.backend import zmq_version_info
1010

11-
__version__: str = "26.0.0a3"
11+
__version__: str = "26.0.0a4"
1212
_version_pat = re.compile(r"(\d+)\.(\d+)\.(\d+)(.*)")
1313
_match = cast(Match, _version_pat.match(__version__))
1414
_version_groups = _match.groups()

0 commit comments

Comments
 (0)