diff --git a/CHANGELOG.md b/CHANGELOG.md index 308eeab..356f159 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Release History +## 1.4.3 - 2023-01-25 + +* fix: update pyopenssl version to resovle pyca/cryptography#7959 + ## 1.4.2 - 2022-12-11 * fix: update the black version to fix github ci pipeline diff --git a/pyas2lib/__init__.py b/pyas2lib/__init__.py index 00d720f..aba789a 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.4.1" +__version__ = "1.4.3" __all__ = [ diff --git a/setup.py b/setup.py index e5f350d..76edb93 100644 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ long_description="Docs for this project are maintained at " "https://github.com/abhishek-ram/pyas2-lib/blob/" "master/README.md", - version="1.4.2", + version="1.4.3", author="Abhishek Ram", author_email="abhishek8816@gmail.com", packages=find_packages(where=".", exclude=("test*",)),