diff --git a/filtermail/CHANGELOG.md b/filtermail/CHANGELOG.md index dd40d3ea..8c2b524e 100644 --- a/filtermail/CHANGELOG.md +++ b/filtermail/CHANGELOG.md @@ -1,3 +1,16 @@ +## 0.2.0 - 2026-01-28 + +### Features + +- Configurable rate limiter max burst size (#28) + +### Performance + +- Disable Nagle's algorithm and do own buffering on server connections + +### Refactor + +- Remove Mutex around rate limiter ## 0.1.2 - 2026-01-22 ### Bug Fixes diff --git a/filtermail/Cargo.lock b/filtermail/Cargo.lock index fda5f2f2..c5739c96 100644 --- a/filtermail/Cargo.lock +++ b/filtermail/Cargo.lock @@ -258,7 +258,7 @@ dependencies = [ [[package]] name = "filtermail" -version = "0.1.2" +version = "0.2.0" dependencies = [ "async-trait", "base64", diff --git a/filtermail/Cargo.toml b/filtermail/Cargo.toml index e44187da..af268a99 100644 --- a/filtermail/Cargo.toml +++ b/filtermail/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "filtermail" -version = "0.1.2" +version = "0.2.0" edition = "2024" license = "MIT" readme = "README.md"