diff --git a/CHANGELOG.md b/CHANGELOG.md
index 71cb764..52b01c2 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,7 @@
-### next
+
+### v2.0.2 - 2024-09-07
- allow some additional spaces in filters of several kinds, eg `-d '> 12/25'`
+- fix some problems in filters using several operators without parenthesis
### v2.0.1 - 2023-09-03
diff --git a/Cargo.lock b/Cargo.lock
index a5cd2d6..1669ac8 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -150,9 +150,9 @@ checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
[[package]]
name = "bet"
-version = "1.0.3"
+version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "346ce34c9a1bde8113a8590f3f9c8bcc87532188535066bc6b98c2b69f97cc38"
+checksum = "4a33cd5a98377df6ecfedff9c018c1c1ea92c730c4baf9173cfe0d7c3df20ab6"
[[package]]
name = "bitflags"
@@ -989,7 +989,7 @@ checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b"
[[package]]
name = "rhit"
-version = "2.0.1"
+version = "2.0.2"
dependencies = [
"bet",
"clap",
diff --git a/Cargo.toml b/Cargo.toml
index 9a2a5f0..52b6dbc 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "rhit"
-version = "2.0.1"
+version = "2.0.2"
authors = ["dystroy "]
repository = "https://github.com/Canop/rhit"
description = "nginx log analyzer"
@@ -11,7 +11,7 @@ categories = ["command-line-utilities"]
rust-version = "1.60"
[dependencies]
-bet = "1.0.3"
+bet = "1.0.4"
clap = { version = "4.4", features = ["derive", "cargo"] }
clap-help = "1.0.0"
cli-log = "2.0"
@@ -42,7 +42,7 @@ name = "filter_resources"
harness = false
[patch.crates-io]
-# bet = { path = "../bet" }
+# bet = { path = "../bet" }
# cli-log = { path = "../cli-log" }
# have = { path = "../have" }
# minimad = { path = "../minimad" }