aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwbond <will@wbond.net>2020-01-04 09:06:42 -0500
committerwbond <will@wbond.net>2020-01-04 09:06:42 -0500
commitc09b87c647150e1b4b1f65d7ebff4981ddfd6174 (patch)
tree9b92468a4ad1b95d479decdc0d926d4a89ba94e8
parenta7752538677305e78eae62ba1f3eab5c539144f2 (diff)
downloadasn1crypto-c09b87c647150e1b4b1f65d7ebff4981ddfd6174.tar.gz
Version 1.3.0
-rw-r--r--asn1crypto/version.py4
-rw-r--r--changelog.md12
-rw-r--r--readme.md2
-rw-r--r--setup.py2
-rw-r--r--tests/__init__.py4
-rw-r--r--tests/setup.py2
6 files changed, 19 insertions, 7 deletions
diff --git a/asn1crypto/version.py b/asn1crypto/version.py
index 8df821e..b7c352c 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 ba59590..67d1766 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 551592f..5f05a4e 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 55aa160..ce6f2e2 100644
--- a/setup.py
+++ b/setup.py
@@ -10,7 +10,7 @@ from setuptools.command.egg_info import egg_info
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 3cb26b3..b669e5a 100644
--- a/tests/__init__.py
+++ b/tests/__init__.py
@@ -6,8 +6,8 @@ import os
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 f5f3d82..fc20401 100644
--- a/tests/setup.py
+++ b/tests/setup.py
@@ -10,7 +10,7 @@ from setuptools.command.egg_info import egg_info
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, '..'))