Skip to content

Commit

Permalink
Bump version to 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
abhishekram committed Jun 12, 2019
1 parent fbafaf0 commit 58f5523
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 7 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Release History

## 1.2.0 - 2019-06-12

* Use f-strings for string formatting.
* Use HTTP email policy for flattening email messages.
* Add proper support for other encryption algos.
* Use dataclasses for organization and partner.
* Remove support for python 3.5.
* Add utility function for extracting info from certificates.


## 1.1.1 - 2019-06-03

* Remove leftover print statement.
Expand Down
12 changes: 7 additions & 5 deletions pyas2lib/__init__.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
from pyas2lib.as2 import DIGEST_ALGORITHMS
from pyas2lib.as2 import ENCRYPTION_ALGORITHMS
from pyas2lib.as2 import MDN_CONFIRM_TEXT
from pyas2lib.as2 import MDN_FAILED_TEXT
from pyas2lib.constants import (
DIGEST_ALGORITHMS,
ENCRYPTION_ALGORITHMS,
MDN_CONFIRM_TEXT,
MDN_FAILED_TEXT
)
from pyas2lib.as2 import Mdn
from pyas2lib.as2 import Message
from pyas2lib.as2 import Organization
from pyas2lib.as2 import Partner

__version__ = '1.1.1'
__version__ = '1.2.0'


__all__ = [
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
'pytest==3.4.0',
'pytest-cov==2.5.1',
'coverage==4.3.4',
'nose',
]

setup(
Expand All @@ -27,7 +26,7 @@
long_description="Docs for this project are maintained at "
"https://github.com/abhishek-ram/pyas2-lib/blob/"
"master/README.md",
version='1.1.1',
version='1.2.0',
author="Abhishek Ram",
author_email="[email protected]",
packages=find_packages(
Expand Down

0 comments on commit 58f5523

Please sign in to comment.