diff --git a/CHANGELOG.md b/CHANGELOG.md index 9846a29d..0a0c5135 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,15 @@ # Change Log -## unreleased +## 0.18.1 - 2024-05-08 - [sqlite] Add CLI commands to "optimize" and "analyze" the sqlite database. This can help use better indexes. +- [webapp] Add sensor filter inbox and alerts pages. Still might + require some work. +- [webapp] Fix weird infinite loop in login when authentication is + disable/enabled. +- [elastic] New utility command to set the field limit +- Many misc fixups ## 0.18.0 - 2024-02-14 diff --git a/Cargo.toml b/Cargo.toml index 357d1115..80e1ea28 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "evebox" # Suffix with -dev when not a release. -version = "0.18.1-dev" +version = "0.18.1" authors = ["Jason Ish "] edition = "2021" description = "A web based Suricata event manager" @@ -10,6 +10,7 @@ homepage = "https://evebox.org" repository = "https://github.com/jasonish/evebox" documentation = "https://evebox.org" +# This is not a guarantee, just helps notify me when the MSRV changes. rust-version = "1.75.0" [profile.release]