SpamAssassin Milter 0.1.3

This commit is contained in:
David Bürgin 2020-07-04 10:26:59 +02:00
parent 6f36f8868a
commit 09f9795c14
5 changed files with 6 additions and 6 deletions

View file

@ -1,6 +1,6 @@
# SpamAssassin Milter changelog
## unreleased
## 0.1.3 (2020-07-04)
* Add `--reply-code`, `--reply-status-code`, and `--reply-text` options to
allow customising the SMTP reply when rejecting spam.

2
Cargo.lock generated
View file

@ -164,7 +164,7 @@ dependencies = [
[[package]]
name = "spamassassin-milter"
version = "0.1.2"
version = "0.1.3"
dependencies = [
"chrono",
"clap",

View file

@ -1,6 +1,6 @@
[package]
name = "spamassassin-milter"
version = "0.1.2" # remember to update html_root_url and VERSION
version = "0.1.3" # 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-06-07
.TH SPAMASSASSIN-MILTER 8 2020-07-04
.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.2")]
#![doc(html_root_url = "https://docs.rs/spamassassin-milter/0.1.3")]
#![macro_use]
macro_rules! verbose {
@ -31,7 +31,7 @@ use milter::{Milter, Result};
pub const MILTER_NAME: &str = "SpamAssassin Milter";
/// The current version string of SpamAssassin Milter.
pub const VERSION: &str = "0.1.2";
pub const VERSION: &str = "0.1.3";
/// Starts SpamAssassin Milter listening on the given socket using the supplied
/// configuration.