Skip to content

Commit

Permalink
Bump to 23.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
minrk committed Aug 12, 2022
1 parent b4af0fe commit 015e616
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 @@ -23,7 +23,7 @@ build-backend = "setuptools.build_meta"
github_url = "https://github.com/zeromq/pyzmq"

[tool.tbump.version]
current = "23.3.0.dev"
current = "23.2.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 @@ -1324,7 +1324,7 @@ def find_packages():

setup_args = dict(
name="pyzmq",
version="23.3.0.dev",
version="23.2.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 = "23.3.0.dev"
__version__: str = "23.2.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 015e616

Please sign in to comment.