Bump version for next release

This commit is contained in:
Scott Kitterman
2018-02-19 17:32:55 -05:00
parent 6f6cd77587
commit 02ad614657
2 changed files with 11 additions and 9 deletions
+10 -8
View File
@@ -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
+1 -1
View File
@@ -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):