SpamAssassin Milter 0.1.1

This commit is contained in:
David Bürgin 2020-04-13 16:44:35 +02:00
parent 6d54a6a5d1
commit 1b9cc48a18
5 changed files with 6 additions and 6 deletions

View file

@ -1,6 +1,6 @@
# SpamAssassin Milter changelog
## next (unreleased)
## 0.1.1 (2020-04-13)
* Use `Write::write_all` instead of `Write::write` in `spamc` client, in order
to ensure buffers are written in their entirety.

2
Cargo.lock generated
View file

@ -170,7 +170,7 @@ checksum = "2439c63f3f6139d1b57529d16bc3b8bb855230c8efcc5d3a896c8bea7c3b1e84"
[[package]]
name = "spamassassin-milter"
version = "0.1.0"
version = "0.1.1"
dependencies = [
"chrono",
"clap",

View file

@ -1,6 +1,6 @@
[package]
name = "spamassassin-milter"
version = "0.1.0" # remember to update html_root_url and VERSION
version = "0.1.1" # 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-02-23
.TH SPAMASSASSIN-MILTER 8 2020-04-13
.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.0")]
#![doc(html_root_url = "https://docs.rs/spamassassin-milter/0.1.1")]
#![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.0";
pub const VERSION: &str = "0.1.1";
/// Starts SpamAssassin Milter listening on the given socket using the supplied
/// configuration.