diff --git a/CHANGELOG.md b/CHANGELOG.md index c7384ff..55c6128 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Release History +## 1.3.2 - 2020-11-01 +* Use `signature_algo` attribute when detecting the signature algorithm +* Raise exception when unknown `digest_alg` is passed to the sign function +* Add proper support for handling binary messages +* Look for `Final-Recipient` if `Original-Recipient` is not present in the MDN +* Remove support for python 3.6 +* Fix linting and change the linter to pylava + ## 1.3.1 - 2020-04-12 * Use correct format for setting dataclasses requirement for python 3.6 diff --git a/pyas2lib/__init__.py b/pyas2lib/__init__.py index ed525f2..fe44dd4 100644 --- a/pyas2lib/__init__.py +++ b/pyas2lib/__init__.py @@ -9,7 +9,7 @@ from pyas2lib.as2 import Organization from pyas2lib.as2 import Partner -__version__ = "1.3.1" +__version__ = "1.3.2" __all__ = [ diff --git a/setup.py b/setup.py index f178f5e..9ce429d 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,6 @@ "asn1crypto==1.3.0", "oscrypto==1.2.0", "pyOpenSSL==19.1.0", - "dataclasses==0.7;python_version=='3.6'", ] tests_require = [ @@ -25,7 +24,7 @@ long_description="Docs for this project are maintained at " "https://github.com/abhishek-ram/pyas2-lib/blob/" "master/README.md", - version="1.3.1", + version="1.3.2", author="Abhishek Ram", author_email="abhishek8816@gmail.com", packages=find_packages(where=".", exclude=("test*",)),