Skip to content

Commit

Permalink
Bump to 26.2.1.dev
Browse files Browse the repository at this point in the history
  • Loading branch information
minrk committed Aug 22, 2024
1 parent 01ed553 commit 3007a5d
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 @@ -12,7 +12,7 @@ build-backend = "scikit_build_core.build"
# ref: https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html
[project]
name = "pyzmq"
version = "26.2.0"
version = "26.2.1.dev"
authors = [
{ name = "PyZMQ Contributors", email = "[email protected]" },
{ name = "Brian E. Granger" },
Expand Down Expand Up @@ -116,7 +116,7 @@ skip = ["zmq/__init__.py"]
github_url = "https://github.com/zeromq/pyzmq"

[tool.tbump.version]
current = "26.2.0"
current = "26.2.1.dev"
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.2.0"
__version__: str = "26.2.1.dev"
_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 3007a5d

Please sign in to comment.