Skip to content

Commit

Permalink
Version 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wbond committed Mar 18, 2022
1 parent 7a89061 commit c91c864
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 6 deletions.
17 changes: 17 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# changelog

## 1.3.0

- Add support for OpenSSL 3.0
- Add first-class support for RSASSA-PSS certificates
- Add user-friendly handling of the error message with TLS on macOS
when a ceritificate has a lifetime that is longer than the CAB forum
guidelines
- Fix AES 192/256 encryption on OpenSSL and Windows to allow no padding when
plaintext is an exact multiple of 16 bytes long. Previously AES192 would
require plaintext with a length that was a multiple of 24 AND 16, and
AES256 would require plaintext with a length that was a multiple of 32.
- Add the ability to skip tests that require internet connectivity
*via @jnahmias*
- Fix a bug throwing an exception when passing an invalid type to
`asymmetric.load_public_key()` *via @Arbitrage0*
- Fix a number of typos in doc strings *via @frennkie and @kianmeng*

## 1.2.1

- Fix running in an environment with a custom OpenSSL install on macOS 10.15
Expand Down
4 changes: 2 additions & 2 deletions oscrypto/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
from __future__ import unicode_literals, division, absolute_import, print_function


__version__ = '1.2.1'
__version_info__ = (1, 2, 1)
__version__ = '1.3.0'
__version_info__ = (1, 3, 0)
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@


PACKAGE_NAME = 'oscrypto'
PACKAGE_VERSION = '1.2.1'
PACKAGE_VERSION = '1.3.0'
PACKAGE_ROOT = os.path.dirname(os.path.abspath(__file__))


Expand Down
4 changes: 2 additions & 2 deletions tests/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
import unittest


__version__ = '1.2.1'
__version_info__ = (1, 2, 1)
__version__ = '1.3.0'
__version_info__ = (1, 3, 0)


_asn1crypto_module = None
Expand Down
2 changes: 1 addition & 1 deletion tests/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@


PACKAGE_NAME = 'oscrypto'
PACKAGE_VERSION = '1.2.1'
PACKAGE_VERSION = '1.3.0'
TEST_PACKAGE_NAME = '%s_tests' % PACKAGE_NAME
TESTS_ROOT = os.path.dirname(os.path.abspath(__file__))

Expand Down

0 comments on commit c91c864

Please sign in to comment.