2 Commits
Author SHA1 Message Date
Joe Testa 111399e431 Fixed a perhaps rare crash during rate testing. (#367) 2026-07-09 18:55:12 -04:00
Joe Testa 45f64b12cf Bumped version. 2026-07-09 18:54:47 -04:00
3 changed files with 6 additions and 2 deletions
+3
View File
@@ -252,6 +252,9 @@ For convenience, a web front-end on top of the command-line tool is available at
## ChangeLog
### v3.9.1-dev
- Fixed a perhaps rare crash when performing connection rate tests during standard audits.
### v3.9.0 (2026-07-04)
- BIG THANKS to [realmiwi](https://github.com/realmiwi) for being the project's *very first sponsor!!*
- Added support for Python 3.14.
+2 -1
View File
@@ -324,7 +324,8 @@ class DHEat:
except OSError:
pass
del socket_dict[s]
if s in socket_dict:
del socket_dict[s]
# Check if this platform has socket.AF_UNIX. Windows does not.
has_af_unix = hasattr(socket, 'AF_UNIX')
+1 -1
View File
@@ -22,7 +22,7 @@
THE SOFTWARE.
"""
# The version to display.
VERSION = 'v3.9.0'
VERSION = 'v3.9.1-dev'
# SSH software to impersonate
SSH_HEADER = 'SSH-{0}-OpenSSH_10.3'