Skip to content

Commit

Permalink
Bump to 26.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
minrk committed May 1, 2024
1 parent adb199b commit 5a45683
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ build-backend = "scikit_build_core.build"
# ref: https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html
[project]
name = "pyzmq"
version = "26.0.2"
version = "26.0.3"
authors = [
{ name = "PyZMQ Contributors", email = "[email protected]" },
{ name = "Brian E. Granger" },
Expand Down Expand Up @@ -115,7 +115,7 @@ skip = ["zmq/__init__.py"]
github_url = "https://github.com/zeromq/pyzmq"

[tool.tbump.version]
current = "26.0.2"
current = "26.0.3"
regex = '''
(?P<major>\d+)
\.
Expand Down
2 changes: 1 addition & 1 deletion zmq/sugar/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

from zmq.backend import zmq_version_info

__version__: str = "26.0.2"
__version__: str = "26.0.3"
_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 5a45683

Please sign in to comment.