From: Jason Ish Date: Fri, 19 Jan 2018 20:42:10 +0000 (-0600) Subject: Version 1.0.0b1 X-Git-Tag: 1.0.0b1^0 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dc1a320daadb1cd2372b8ef3c48eb682e50ebd6a;p=thirdparty%2Fsuricata-update.git Version 1.0.0b1 --- diff --git a/CHANGELOG.md b/CHANGELOG.md index e5f7a2f..5fc4df2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Change Log -## unreleased +## 1.0.0b1 - 2018-01-19 - Various fixes for Python 3. - Allow the default state directory of /var/lib/suricata to be changed with the command line parameter -D (--data-dir). Fixes issue @@ -18,8 +18,12 @@ suricata.yaml configuration file used (https://redmine.openinfosecfoundation.org/issues/2350). - Allow the Suricata application to be set in the configuration file. +- Allow disabling of TLS certificate validation + (--no-check-certificate). +- Safe loading of YAML files + (https://redmine.openinfosecfoundation.org/issues/2359) -## 1.0.0a - 2017-12-05 +## 1.0.0a1 - 2017-12-05 - Initial alpha release of Suricata-Update. A Suricata rule update tool based on idstools-rulecat, relicensed under the GPLv2 with copyright assigned to the OISF. diff --git a/suricata/update/version.py b/suricata/update/version.py index b5cda2f..c75742f 100644 --- a/suricata/update/version.py +++ b/suricata/update/version.py @@ -3,4 +3,4 @@ # Beta: 1.0.0b1 # Alpha: 1.0.0a1 # Development: 1.0.0.dev0 -version = "1.0.0a1" +version = "1.0.0b1"