Skip to content

Commit

Permalink
Bump the version of pyas2 to 1.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
abhishekram committed Nov 1, 2020
1 parent 06b5eab commit 1069918
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion pyas2lib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from pyas2lib.as2 import Organization
from pyas2lib.as2 import Partner

__version__ = "1.3.1"
__version__ = "1.3.2"


__all__ = [
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand All @@ -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="[email protected]",
packages=find_packages(where=".", exclude=("test*",)),
Expand Down

0 comments on commit 1069918

Please sign in to comment.