Skip to content

Commit

Permalink
Bump the version of pyas2 to 1.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
abhishekram committed Jan 17, 2021
1 parent ff55aa1 commit a0dce40
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Release History

## 1.3.3 - 2021-01-17
* Update the versions of asn1crypto, oscrypto and pyOpenSSL

## 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
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.2"
__version__ = "1.3.3"


__all__ = [
Expand Down
9 changes: 5 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
from setuptools import setup, find_packages

install_requires = [
"asn1crypto==1.3.0",
"asn1crypto==1.4.0",
"oscrypto==1.2.1",
"pyOpenSSL==19.1.0",
"pyOpenSSL==20.0.1",
]

tests_require = [
"pytest==6.1.2",
"pytest==6.2.1",
"toml==0.10.1",
"pytest-cov==2.8.1",
"coverage==5.0.4",
"pylint==2.4.4",
Expand All @@ -24,7 +25,7 @@
long_description="Docs for this project are maintained at "
"https://github.com/abhishek-ram/pyas2-lib/blob/"
"master/README.md",
version="1.3.2",
version="1.3.3",
author="Abhishek Ram",
author_email="[email protected]",
packages=find_packages(where=".", exclude=("test*",)),
Expand Down

0 comments on commit a0dce40

Please sign in to comment.