diff --git a/CHANGELOG b/CHANGELOG index 134cd46..4a1861e 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,17 @@ +Version 0.6.6 (2016-04-03) +========================== + +* bugfix: [WebInterface] Fixed responses to API calls (pause/resume) +* bugfix: [ClientFuzzer] fix advancement in path when get_mutation is called +* bugfix: [BaseFuzzer] fixed typo in cmd line arg +* new feature: [WebInterface] New web interface design, allowing export of reports and showing more relevant status +* new feature: [DataManager] Support generic (volatile) content operations (still synchronized) +* new feature: [kitty-tool] add out-file name format command line option +* new feature: [Fuzzer] perform environment test before starting the actual fuzzing session + Version 0.6.5 (2016-03-20) ========================== + * bugfix: [ClientFuzzer] Fixed off-by-one bug in the fuzzing index (start/end) of client fuzzer * bugfix: [ClientFuzzer] Protect from multiple calls to start (can now restart stack without restarting fuzzer) * bugfix: [ClientFuzzer] Fixed exception when there are no stage to log @@ -7,9 +19,9 @@ Version 0.6.5 (2016-03-20) * new feature: [ClientFuzzer] Added API to check if client fuzzer is done fuzzing * new feature: [Remote] Added stop API for RPC server - Version 0.6.4 (2016-03-13) ========================== + * bugfix: [package] fixed package name in get_distribution calls Version 0.6.3 (2016-03-13) diff --git a/docs/source/conf.py b/docs/source/conf.py index d32efd7..bcb5be9 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -63,9 +63,9 @@ # built documents. # # The short X.Y version. -version = '0.6.5' +version = '0.6.6' # The full version, including alpha/beta/rc tags. -release = '0.6.5' +release = '0.6.6' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 322fd7d..cf48705 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() -VERSION = '0.6.5' +VERSION = '0.6.6' AUTHOR = 'Cisco SAS team' EMAIL = 'kitty-fuzzer@googlegroups.com' URL = 'https://github.com/cisco-sas/kitty.git'