From c09b87c647150e1b4b1f65d7ebff4981ddfd6174 Mon Sep 17 00:00:00 2001 From: wbond Date: Sat, 4 Jan 2020 09:06:42 -0500 Subject: [PATCH] Version 1.3.0 --- asn1crypto/version.py | 4 ++-- changelog.md | 12 ++++++++++++ readme.md | 2 +- setup.py | 2 +- tests/__init__.py | 4 ++-- tests/setup.py | 2 +- 6 files changed, 19 insertions(+), 7 deletions(-) diff --git a/asn1crypto/version.py b/asn1crypto/version.py index 8df821ea..b7c352ce 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.2.0' -__version_info__ = (1, 2, 0) +__version__ = '1.3.0' +__version_info__ = (1, 3, 0) diff --git a/changelog.md b/changelog.md index ba59590e..67d17665 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,17 @@ # changelog +## 1.3.0 + + - Added `encrypt_key_pref` (`1.2.840.113549.1.9.16.2.11`) to + `cms.CMSAttributeType()`, along with related structures + - Added Brainpool curves from RFC 5639 to `keys.NamedCurve()` + - Fixed `x509.Certificate().subject_directory_attributes_value` + - Fixed some incorrectly computed minimum elliptic curve primary key + encoding sizes in `keys.NamedCurve()` + - Fixed a `TypeError` when trying to call `.untag()` or `.copy()` on a + `core.UTCTime()` or `core.GeneralizedTime()`, or a value containing one, + when using Python 2 + ## 1.2.0 - Added `asn1crypto.load_order()`, which returns a `list` of unicode strings diff --git a/readme.md b/readme.md index 551592f3..5f05a4ed 100644 --- a/readme.md +++ b/readme.md @@ -112,7 +112,7 @@ faster to an order of magnitude or more. ## Current Release -1.2.0 - [changelog](changelog.md) +1.3.0 - [changelog](changelog.md) ## Dependencies diff --git a/setup.py b/setup.py index 55aa1601..ce6f2e2f 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ PACKAGE_NAME = 'asn1crypto' -PACKAGE_VERSION = '1.2.0' +PACKAGE_VERSION = '1.3.0' PACKAGE_ROOT = os.path.dirname(os.path.abspath(__file__)) diff --git a/tests/__init__.py b/tests/__init__.py index 3cb26b30..b669e5a8 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -6,8 +6,8 @@ import unittest -__version__ = '1.2.0' -__version_info__ = (1, 2, 0) +__version__ = '1.3.0' +__version_info__ = (1, 3, 0) def _import_from(mod, path, mod_dir=None): diff --git a/tests/setup.py b/tests/setup.py index f5f3d82d..fc20401e 100644 --- a/tests/setup.py +++ b/tests/setup.py @@ -10,7 +10,7 @@ PACKAGE_NAME = 'asn1crypto' -PACKAGE_VERSION = '1.2.0' +PACKAGE_VERSION = '1.3.0' TEST_PACKAGE_NAME = '%s_tests' % PACKAGE_NAME TESTS_ROOT = os.path.dirname(os.path.abspath(__file__)) PACKAGE_ROOT = os.path.abspath(os.path.join(TESTS_ROOT, '..'))