SpamAssassin Milter 0.1.5

This commit is contained in:
David Bürgin 2021-03-16 09:19:46 +01:00
parent fb7f6a809b
commit 8ca8701be2
5 changed files with 6 additions and 6 deletions

View file

@ -1,6 +1,6 @@
# SpamAssassin Milter changelog
## 0.1.5 (unreleased)
## 0.1.5 (2021-03-16)
* Read output from `spamc` in a separate thread in order to avoid blocking
when processing large messages in certain configurations.

2
Cargo.lock generated
View file

@ -166,7 +166,7 @@ dependencies = [
[[package]]
name = "spamassassin-milter"
version = "0.1.4"
version = "0.1.5"
dependencies = [
"chrono",
"clap",

View file

@ -1,6 +1,6 @@
[package]
name = "spamassassin-milter"
version = "0.1.4" # remember to update html_root_url and VERSION
version = "0.1.5" # remember to update html_root_url and VERSION
edition = "2018"
description = "Milter for spam filtering with SpamAssassin"
authors = ["David Bürgin <dbuergin@gluet.ch>"]

View file

@ -1,4 +1,4 @@
.TH SPAMASSASSIN-MILTER 8 2020-10-18
.TH SPAMASSASSIN-MILTER 8 2021-03-16
.SH NAME
spamassassin-milter \- milter for spam filtering with SpamAssassin
.SH SYNOPSIS

View file

@ -1,6 +1,6 @@
//! The SpamAssassin Milter application library.
#![doc(html_root_url = "https://docs.rs/spamassassin-milter/0.1.4")]
#![doc(html_root_url = "https://docs.rs/spamassassin-milter/0.1.5")]
macro_rules! verbose {
($config:ident, $($arg:tt)*) => {
@ -30,7 +30,7 @@ use milter::Milter;
pub const MILTER_NAME: &str = "SpamAssassin Milter";
/// The current version string of SpamAssassin Milter.
pub const VERSION: &str = "0.1.4";
pub const VERSION: &str = "0.1.5";
/// Starts SpamAssassin Milter listening on the given socket using the supplied
/// configuration.