From 06b7b0ca6ddc100986c4d6413a8b78bcfd978165 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jagoda=20=C5=9Al=C4=85zak?= Date: Wed, 21 Jan 2026 17:19:05 +0100 Subject: [PATCH] chore(release): prepare for 0.1.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jagoda Ślązak --- filtermail/CHANGELOG.md | 39 +++++++++++++++++++++++++++++++++++++++ filtermail/Cargo.lock | 2 +- filtermail/Cargo.toml | 2 +- 3 files changed, 41 insertions(+), 2 deletions(-) create mode 100644 filtermail/CHANGELOG.md diff --git a/filtermail/CHANGELOG.md b/filtermail/CHANGELOG.md new file mode 100644 index 00000000..3a4a450c --- /dev/null +++ b/filtermail/CHANGELOG.md @@ -0,0 +1,39 @@ +## 0.1.1 - 2026-01-21 + +### Bug Fixes + +- Improve address extraction from SMTP commands (#14) +- Correct a typo in SMTP answer (#11) +- *(config)* Set default values for internal SMTP ports and max message size (#12) + +### Features + +- Improve logging (#13) + +### Miscellaneous Tasks + +- *(dist)* Configure cargo-dist (#10) +- Configure git-cliff + +### Refactor + +- Get rid of indexing and slicing in check_armored_payload() (#15) +- Apply more lints (#17) +## 0.1.0 - 2026-01-19 + +### Documentation + +- *(readme)* Add README.md +- *(license)* Add LICENSE + +### Features + +- Initial implementation + +### Miscellaneous Tasks + +- Init repository +- *(dependabot)* Setup dependabot +- *(ci)* Setup CI +- *(dependabot)* Add github-actions to dependabot +- *(cargo)* Add metadata diff --git a/filtermail/Cargo.lock b/filtermail/Cargo.lock index 5c91650b..c94f5fe1 100644 --- a/filtermail/Cargo.lock +++ b/filtermail/Cargo.lock @@ -232,7 +232,7 @@ dependencies = [ [[package]] name = "filtermail" -version = "0.1.0" +version = "0.1.1" dependencies = [ "async-trait", "base64", diff --git a/filtermail/Cargo.toml b/filtermail/Cargo.toml index feb6daa2..12bb72ee 100644 --- a/filtermail/Cargo.toml +++ b/filtermail/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "filtermail" -version = "0.1.0" +version = "0.1.1" edition = "2024" license = "MIT" readme = "README.md"