Skip to content

Commit 5458620

Browse files
committed
Bump to 26.2.1
1 parent d0b1b44 commit 5458620

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

118118
[tool.tbump.version]
119-
current = "26.2.1.dev"
119+
current = "26.2.1"
120120
regex = '''
121121
(?P<major>\d+)
122122
\.

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 = "26.2.1.dev"
12+
__version__: str = "26.2.1"
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)