diff --git a/CHANGES b/CHANGES index 71e41e3..2270f35 100644 --- a/CHANGES +++ b/CHANGES @@ -1,11 +1,4 @@ - -0.9.1 2018-02-17 - - DKIM signing and verification using both RSA and Ed25519 - - The following configuration options are supported (same definition as - OpenDKIM): Domain, KeyFile, KeyFileEd25519, Mode, PidFile, Selector, - Socket, Syslog, UMask, and UserID (see dkimpy-milter.conf.5) - - This is an Alpha grade release and while the implemented features work, it - is nowhere near being a complete package +0.9.3 UNRELEASED 0.9.2 2018-02-19 - Improved package requirements definition @@ -16,3 +9,12 @@ - Initial dataset support: csl - Only sign if mail from from a domain in Domain and only if Mode is not verfication only + +0.9.1 2018-02-17 + - DKIM signing and verification using both RSA and Ed25519 + - The following configuration options are supported (same definition as + OpenDKIM): Domain, KeyFile, KeyFileEd25519, Mode, PidFile, Selector, + Socket, Syslog, UMask, and UserID (see dkimpy-milter.conf.5) + - This is an Alpha grade release and while the implemented features work, it + is nowhere near being a complete package + diff --git a/dkimpy_milter/__init__.py b/dkimpy_milter/__init__.py index 635809d..d8542c9 100644 --- a/dkimpy_milter/__init__.py +++ b/dkimpy_milter/__init__.py @@ -40,7 +40,7 @@ from dkimpy_milter.util import setExceptHook from dkimpy_milter.util import write_pid from dkimpy_milter.util import read_keyfile -__version__ = "0.9.2" +__version__ = "0.9.3" FWS = re.compile(r'\r?\n[ \t]+') class dkimMilter(Milter.Base):