Skip to content

Commit

Permalink
Version 1.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
wbond committed Mar 15, 2022
1 parent d0040c2 commit 835365c
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 6 deletions.
4 changes: 2 additions & 2 deletions asn1crypto/version.py
Expand Up @@ -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)
10 changes: 10 additions & 0 deletions 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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -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__))


Expand Down
4 changes: 2 additions & 2 deletions tests/__init__.py
Expand Up @@ -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):
Expand Down
2 changes: 1 addition & 1 deletion tests/setup.py
Expand Up @@ -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__))

Expand Down

0 comments on commit 835365c

Please sign in to comment.