File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ build-backend = "scikit_build_core.build"
12
12
# ref: https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html
13
13
[project ]
14
14
name = " pyzmq"
15
- version = " 27.0.0 "
15
+ version = " 27.0.1 "
16
16
authors = [
17
17
{
name =
" PyZMQ Contributors" ,
email =
" [email protected] " },
18
18
{ name = " Brian E. Granger" },
@@ -124,7 +124,7 @@ skip = ["zmq/__init__.py"]
124
124
github_url = " https://github.com/zeromq/pyzmq"
125
125
126
126
[tool .tbump .version ]
127
- current = " 27.0.0 "
127
+ current = " 27.0.1 "
128
128
regex = '''
129
129
(?P<major>\d+)
130
130
\.
Original file line number Diff line number Diff line change 9
9
10
10
from zmq .backend import zmq_version_info
11
11
12
- __version__ : str = "27.0.0 "
12
+ __version__ : str = "27.0.1 "
13
13
_version_pat = re .compile (r"(\d+)\.(\d+)\.(\d+)(.*)" )
14
14
_match = cast (Match , _version_pat .match (__version__ ))
15
15
_version_groups = _match .groups ()
You can’t perform that action at this time.
0 commit comments