diff --git a/doc/CHANGELOG.md b/doc/CHANGELOG.md index cf1a1c6cb2..48e9f0eee2 100755 --- a/doc/CHANGELOG.md +++ b/doc/CHANGELOG.md @@ -1,4 +1,4 @@ -## Version 3.9 (TBA) +## Version 3.9 (2024-01-19) * Fixed: Multiple bug-fixes regarding several reported unhandled exceptions. * Revised: Minor improvement regarding logging user-supplied command(s) (i.e. `--os-cmd` option) to a file. * Revised: Improvement regarding parsing HTTP requests through Tor HTTP proxy (i.e. `--tor` switch). @@ -12,6 +12,8 @@ * Added: Translation for [README.md](https://github.com/commixproject/commix/blob/master/doc/translations/README-tr-TR.md) in Turkish (via @Kazgangap) * Revised: Minor improvement regarding parsing SOAP/XML POST data. +_Note: For more check the [detailed changeset](https://github.com/commixproject/commix/compare/v3.8...v3.9)._ + ## Version 3.8 (2023-08-14) * Fixed: Multiple bug-fixes regarding several reported unhandled exceptions. * Revised: Minor improvement regarding parsing raw HTTP request from a file (i.e. `-r` option). diff --git a/setup.py b/setup.py index 62f49da7fa..ce4f3fd389 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ setup( name='commix', - version='3.9-dev', + version='3.9-stable', description='Automated All-in-One OS Command Injection Exploitation Tool', long_description=open('README.md').read(), long_description_content_type='text/markdown', diff --git a/src/utils/settings.py b/src/utils/settings.py index a877ad974a..05bf5506ea 100755 --- a/src/utils/settings.py +++ b/src/utils/settings.py @@ -248,7 +248,7 @@ def sys_argv_errors(): AUTHOR = "Anastasios Stasinopoulos" VERSION_NUM = "3.9" REVISION = "44" -STABLE_RELEASE = False +STABLE_RELEASE = True VERSION = "v" if STABLE_RELEASE: VERSION = VERSION + VERSION_NUM + "-stable"