diff --git a/CHANGELOG.md b/CHANGELOG.md index ecb7f58f..caa32d87 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,14 @@ # Change Log -## unreleased +## 0.14.0 - 2021-06-16 - Relicense under MIT, oops. - Server: Wait for Elasticsearch to be ready: https://github.com/jasonish/evebox/issues/170 +- Fix add users command to take parameters from command line as + documented: https://github.com/jasonish/evebox/issues/173 +- Rule parser: Fix stripping of quotes: + https://github.com/jasonish/evebox/issues/177 ## 0.13.1 - 2021-04-09 diff --git a/Cargo.lock b/Cargo.lock index 12b76f93..b572e5ce 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -253,7 +253,7 @@ dependencies = [ [[package]] name = "evebox" -version = "0.14.0-dev" +version = "0.14.0" dependencies = [ "anyhow", "base64 0.12.3", diff --git a/Cargo.toml b/Cargo.toml index 743113d1..7d014007 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "evebox" # Suffix with -dev when not a release. -version = "0.14.0-dev" +version = "0.14.0" authors = ["Jason Ish "] edition = "2018" description = "A web based Suricata event manager"