Skip to content

Commit 7777f2f

Browse files
committed
Bump to 25.1.1
1 parent d6708db commit 7777f2f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ build-backend = "setuptools.build_meta"
3232
github_url = "https://github.com/zeromq/pyzmq"
3333

3434
[tool.tbump.version]
35-
current = "25.1.1b2"
35+
current = "25.1.1"
3636
regex = '''
3737
(?P<major>\d+)
3838
\.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1347,7 +1347,7 @@ def find_packages():
13471347

13481348
setup_args = dict(
13491349
name="pyzmq",
1350-
version="25.1.1b2",
1350+
version="25.1.1",
13511351
packages=find_packages(),
13521352
ext_modules=extensions,
13531353
cffi_modules=cffi_modules,

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 = "25.1.1b2"
11+
__version__: str = "25.1.1"
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)