Skip to content

Commit

Permalink
Bump to 25.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
minrk committed Aug 10, 2023
1 parent d6708db commit 7777f2f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ build-backend = "setuptools.build_meta"
github_url = "https://github.com/zeromq/pyzmq"

[tool.tbump.version]
current = "25.1.1b2"
current = "25.1.1"
regex = '''
(?P<major>\d+)
\.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -1347,7 +1347,7 @@ def find_packages():

setup_args = dict(
name="pyzmq",
version="25.1.1b2",
version="25.1.1",
packages=find_packages(),
ext_modules=extensions,
cffi_modules=cffi_modules,
Expand Down
2 changes: 1 addition & 1 deletion zmq/sugar/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

from zmq.backend import zmq_version_info

__version__: str = "25.1.1b2"
__version__: str = "25.1.1"
_version_pat = re.compile(r"(\d+)\.(\d+)\.(\d+)(.*)")
_match = cast(Match, _version_pat.match(__version__))
_version_groups = _match.groups()
Expand Down

0 comments on commit 7777f2f

Please sign in to comment.