diff --git a/asn1crypto/version.py b/asn1crypto/version.py index d25a5a4..966b57a 100644 --- a/asn1crypto/version.py +++ b/asn1crypto/version.py @@ -2,5 +2,5 @@ from __future__ import unicode_literals, division, absolute_import, print_function -__version__ = '1.5.0' -__version_info__ = (1, 5, 0) +__version__ = '1.5.1' +__version_info__ = (1, 5, 1) diff --git a/changelog.md b/changelog.md index e142b9d..70dcf49 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,15 @@ # changelog +## 1.5.1 + + - Handle RSASSA-PSS in `keys.PrivateKeyInfo.bit_size` and + `keys.PublicKeyInfo.bit_size` + - Handle RSASSA-PSS in `keys.PrivateKeyInfo.wrap` and + `keys.PublicKeyInfo.wrap` + - Updated docs for `keys.PrivateKeyInfo.algorithm` and + `keys.PublicKeyInfo.algorithm` to reflect that they can return + `"rsassa_pss"` + ## 1.5.0 - Fix `tsp.TimeStampAndCRL` to be a `core.Sequence` instead of a diff --git a/setup.py b/setup.py index 3b92b7f..cb9bfab 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ PACKAGE_NAME = 'asn1crypto' -PACKAGE_VERSION = '1.5.0' +PACKAGE_VERSION = '1.5.1' PACKAGE_ROOT = os.path.dirname(os.path.abspath(__file__)) diff --git a/tests/__init__.py b/tests/__init__.py index 6222a58..8863093 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -6,8 +6,8 @@ import unittest -__version__ = '1.5.0' -__version_info__ = (1, 5, 0) +__version__ = '1.5.1' +__version_info__ = (1, 5, 1) def _import_from(mod, path, mod_dir=None): diff --git a/tests/setup.py b/tests/setup.py index 8e111ed..cf4c5e2 100644 --- a/tests/setup.py +++ b/tests/setup.py @@ -10,7 +10,7 @@ PACKAGE_NAME = 'asn1crypto' -PACKAGE_VERSION = '1.5.0' +PACKAGE_VERSION = '1.5.1' TEST_PACKAGE_NAME = '%s_tests' % PACKAGE_NAME TESTS_ROOT = os.path.dirname(os.path.abspath(__file__))