diff --git a/ChangeLog b/ChangeLog index c1dd10e..2c0238e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +UNRELEASED Version 0.9.3 + - Fix linesep setting in arcsign script (LP: #1838262) (Thanks to Gowtham + Gopalakrishnan for the report and the patch) + 2019-04-14 Version 0.9.2 - Fix the arcsign script so it works with the current API (Note: the new srv_id option is the authserv_id to use in the ARC signatures - Only AR diff --git a/README b/README index 9651c86..d9be3d9 100644 --- a/README +++ b/README @@ -11,7 +11,7 @@ signing and verification. VERSION -This is dkimpy 0.9.2. +This is dkimpy 0.9.3. REQUIREMENTS diff --git a/dkim/arcsign.py b/dkim/arcsign.py index 0153d12..9592e26 100644 --- a/dkim/arcsign.py +++ b/dkim/arcsign.py @@ -67,7 +67,7 @@ def main(): #try: sig = dkim.arc_sign(message, selector, domain, open(privatekeyfile, "rb").read(), - srv_id, cv, dkim.util.get_linesep(message)) + srv_id, cv, linesep=dkim.util.get_linesep(message)) for line in sig: sys.stdout.write(line) sys.stdout.write(message) diff --git a/setup.py b/setup.py index 8019c0c..0657f04 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ from setuptools import setup import os import sys -version = "0.9.2" +version = "0.9.3" kw = {} # Work-around for lack of 'or' requires in setuptools. try: