From dbf8b696331925ce7d4dbf72cb93faf3968397aa Mon Sep 17 00:00:00 2001 From: Joe Testa Date: Sat, 4 Jul 2026 14:49:40 -0400 Subject: [PATCH] Bump version numbers for 3.9.0 release. --- README.md | 2 +- src/ssh_audit/globals.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index c590601..03f81dd 100644 --- a/README.md +++ b/README.md @@ -252,7 +252,7 @@ For convenience, a web front-end on top of the command-line tool is available at ## ChangeLog -### v3.4.0-dev +### 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. - Dropped support for Python 3.8, as it reached end-of-life in October 2024. diff --git a/src/ssh_audit/globals.py b/src/ssh_audit/globals.py index 5dc8fe5..1598032 100644 --- a/src/ssh_audit/globals.py +++ b/src/ssh_audit/globals.py @@ -1,7 +1,7 @@ """ The MIT License (MIT) - Copyright (C) 2017-2024 Joe Testa (jtesta@positronsecurity.com) + Copyright (C) 2017-2026 Joe Testa (jtesta@positronsecurity.com) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -22,10 +22,10 @@ THE SOFTWARE. """ # The version to display. -VERSION = 'v3.4.0-dev' +VERSION = 'v3.9.0' # SSH software to impersonate -SSH_HEADER = 'SSH-{0}-OpenSSH_8.2' +SSH_HEADER = 'SSH-{0}-OpenSSH_10.3' # The URL to the Github issues tracker. GITHUB_ISSUES_URL = 'https://github.com/jtesta/ssh-audit/issues'