Skip to content

Commit c09b87c

Browse files
committed
Version 1.3.0
1 parent a775253 commit c09b87c

File tree

6 files changed

+19
-7
lines changed

6 files changed

+19
-7
lines changed

asn1crypto/version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
from __future__ import unicode_literals, division, absolute_import, print_function
33

44

5-
__version__ = '1.2.0'
6-
__version_info__ = (1, 2, 0)
5+
__version__ = '1.3.0'
6+
__version_info__ = (1, 3, 0)

changelog.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# changelog
22

3+
## 1.3.0
4+
5+
- Added `encrypt_key_pref` (`1.2.840.113549.1.9.16.2.11`) to
6+
`cms.CMSAttributeType()`, along with related structures
7+
- Added Brainpool curves from RFC 5639 to `keys.NamedCurve()`
8+
- Fixed `x509.Certificate().subject_directory_attributes_value`
9+
- Fixed some incorrectly computed minimum elliptic curve primary key
10+
encoding sizes in `keys.NamedCurve()`
11+
- Fixed a `TypeError` when trying to call `.untag()` or `.copy()` on a
12+
`core.UTCTime()` or `core.GeneralizedTime()`, or a value containing one,
13+
when using Python 2
14+
315
## 1.2.0
416

517
- Added `asn1crypto.load_order()`, which returns a `list` of unicode strings

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ faster to an order of magnitude or more.
112112

113113
## Current Release
114114

115-
1.2.0 - [changelog](changelog.md)
115+
1.3.0 - [changelog](changelog.md)
116116

117117
## Dependencies
118118

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111

1212
PACKAGE_NAME = 'asn1crypto'
13-
PACKAGE_VERSION = '1.2.0'
13+
PACKAGE_VERSION = '1.3.0'
1414
PACKAGE_ROOT = os.path.dirname(os.path.abspath(__file__))
1515

1616

tests/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
import unittest
77

88

9-
__version__ = '1.2.0'
10-
__version_info__ = (1, 2, 0)
9+
__version__ = '1.3.0'
10+
__version_info__ = (1, 3, 0)
1111

1212

1313
def _import_from(mod, path, mod_dir=None):

tests/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111

1212
PACKAGE_NAME = 'asn1crypto'
13-
PACKAGE_VERSION = '1.2.0'
13+
PACKAGE_VERSION = '1.3.0'
1414
TEST_PACKAGE_NAME = '%s_tests' % PACKAGE_NAME
1515
TESTS_ROOT = os.path.dirname(os.path.abspath(__file__))
1616
PACKAGE_ROOT = os.path.abspath(os.path.join(TESTS_ROOT, '..'))

0 commit comments

Comments
 (0)