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 Jan 4, 2020
1 parent a775253 commit c09b87c
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 7 deletions.
4 changes: 2 additions & 2 deletions asn1crypto/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.0'
__version_info__ = (1, 2, 0)
__version__ = '1.3.0'
__version_info__ = (1, 3, 0)
12 changes: 12 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
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 = 'asn1crypto'
PACKAGE_VERSION = '1.2.0'
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.0'
__version_info__ = (1, 2, 0)
__version__ = '1.3.0'
__version_info__ = (1, 3, 0)


def _import_from(mod, path, mod_dir=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 = '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, '..'))
Expand Down

0 comments on commit c09b87c

Please sign in to comment.