diff --git a/CHANGELOG.md b/CHANGELOG.md index c399e57..c2b94a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # SpamAssassin Milter changelog -## 0.4.0 (unreleased) +## 0.4.0 (2023-01-29) The minimum supported Rust version is now 1.61.0. diff --git a/Cargo.lock b/Cargo.lock index 7089c6e..c7f9c15 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -526,7 +526,7 @@ dependencies = [ [[package]] name = "spamassassin-milter" -version = "0.3.2" +version = "0.4.0" dependencies = [ "async-trait", "byte-strings", diff --git a/Cargo.toml b/Cargo.toml index 41f3201..7af7541 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "spamassassin-milter" -version = "0.3.2" +version = "0.4.0" edition = "2021" rust-version = "1.61.0" description = "Milter for spam filtering with SpamAssassin" diff --git a/README.md b/README.md index 4eb4122..d7bfa6b 100644 --- a/README.md +++ b/README.md @@ -84,8 +84,8 @@ desired port, install it in `/etc/systemd/system`, then enable and start the service. Where necessary, user, group, and umask can also be customised in this file. -[*spamassassin-milter*(8)]: https://gitlab.com/glts/spamassassin-milter/-/blob/0.3.2/spamassassin-milter.8 -[`spamassassin-milter.service`]: https://gitlab.com/glts/spamassassin-milter/-/blob/0.3.2/spamassassin-milter.service +[*spamassassin-milter*(8)]: https://gitlab.com/glts/spamassassin-milter/-/blob/0.4.0/spamassassin-milter.8 +[`spamassassin-milter.service`]: https://gitlab.com/glts/spamassassin-milter/-/blob/0.4.0/spamassassin-milter.service ## Configuration diff --git a/spamassassin-milter.8 b/spamassassin-milter.8 index 2dfcc50..5cf773f 100644 --- a/spamassassin-milter.8 +++ b/spamassassin-milter.8 @@ -1,4 +1,4 @@ -.TH SPAMASSASSIN-MILTER 8 2022-08-31 "SpamAssassin Milter 0.3.2" +.TH SPAMASSASSIN-MILTER 8 2023-01-29 "SpamAssassin Milter 0.4.0" .SH NAME spamassassin-milter \- milter for spam filtering with SpamAssassin .SH SYNOPSIS diff --git a/src/callbacks.rs b/src/callbacks.rs index 6bfaf3b..f9d7f43 100644 --- a/src/callbacks.rs +++ b/src/callbacks.rs @@ -1,5 +1,5 @@ // SpamAssassin Milter – milter for spam filtering with SpamAssassin -// Copyright © 2020–2022 David Bürgin +// Copyright © 2020–2023 David Bürgin // // This program is free software: you can redistribute it and/or modify it under // the terms of the GNU General Public License as published by the Free Software diff --git a/src/client.rs b/src/client.rs index 525dae9..0f73eec 100644 --- a/src/client.rs +++ b/src/client.rs @@ -1,5 +1,5 @@ // SpamAssassin Milter – milter for spam filtering with SpamAssassin -// Copyright © 2020–2022 David Bürgin +// Copyright © 2020–2023 David Bürgin // // This program is free software: you can redistribute it and/or modify it under // the terms of the GNU General Public License as published by the Free Software diff --git a/src/collections.rs b/src/collections.rs index c3c2c40..2e82673 100644 --- a/src/collections.rs +++ b/src/collections.rs @@ -1,5 +1,5 @@ // SpamAssassin Milter – milter for spam filtering with SpamAssassin -// Copyright © 2020–2022 David Bürgin +// Copyright © 2020–2023 David Bürgin // // This program is free software: you can redistribute it and/or modify it under // the terms of the GNU General Public License as published by the Free Software diff --git a/src/config.rs b/src/config.rs index 829c2b4..320944b 100644 --- a/src/config.rs +++ b/src/config.rs @@ -1,5 +1,5 @@ // SpamAssassin Milter – milter for spam filtering with SpamAssassin -// Copyright © 2020–2022 David Bürgin +// Copyright © 2020–2023 David Bürgin // // This program is free software: you can redistribute it and/or modify it under // the terms of the GNU General Public License as published by the Free Software diff --git a/src/email.rs b/src/email.rs index d97dfbb..e4660ef 100644 --- a/src/email.rs +++ b/src/email.rs @@ -1,5 +1,5 @@ // SpamAssassin Milter – milter for spam filtering with SpamAssassin -// Copyright © 2020–2022 David Bürgin +// Copyright © 2020–2023 David Bürgin // // This program is free software: you can redistribute it and/or modify it under // the terms of the GNU General Public License as published by the Free Software diff --git a/src/lib.rs b/src/lib.rs index 8afa263..2a60b82 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,5 +1,5 @@ // SpamAssassin Milter – milter for spam filtering with SpamAssassin -// Copyright © 2020–2022 David Bürgin +// Copyright © 2020–2023 David Bürgin // // This program is free software: you can redistribute it and/or modify it under // the terms of the GNU General Public License as published by the Free Software diff --git a/src/main.rs b/src/main.rs index 3a0560b..aea543c 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,5 +1,5 @@ // SpamAssassin Milter – milter for spam filtering with SpamAssassin -// Copyright © 2020–2022 David Bürgin +// Copyright © 2020–2023 David Bürgin // // This program is free software: you can redistribute it and/or modify it under // the terms of the GNU General Public License as published by the Free Software