Skip to content

Commit

Permalink
Bump to 26.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
minrk committed Apr 19, 2024
1 parent 7390fbf commit 5705f67
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 @@ -16,7 +16,7 @@ build-backend = "scikit_build_core.build"
# ref: https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html
[project]
name = "pyzmq"
version = "26.0.1"
version = "26.0.2"
authors = [
{ name = "PyZMQ Contributors", email = "zeromq-dev@lists.zeromq.org" },
{ name = "Brian E. Granger" },
Expand Down Expand Up @@ -117,7 +117,7 @@ skip = ["zmq/__init__.py"]
github_url = "https://github.com/zeromq/pyzmq"

[tool.tbump.version]
current = "26.0.1"
current = "26.0.2"
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.1"
__version__: str = "26.0.2"
_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 5705f67

Please sign in to comment.