Skip to content

Commit

Permalink
Version 1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wbond committed Mar 8, 2022
1 parent 9e067d2 commit 47f7588
Show file tree
Hide file tree
Showing 6 changed files with 35 additions and 7 deletions.
4 changes: 2 additions & 2 deletions asn1crypto/version.py
Expand Up @@ -2,5 +2,5 @@
from __future__ import unicode_literals, division, absolute_import, print_function


__version__ = '1.4.0'
__version_info__ = (1, 4, 0)
__version__ = '1.5.0'
__version_info__ = (1, 5, 0)
28 changes: 28 additions & 0 deletions changelog.md
@@ -1,5 +1,33 @@
# changelog

## 1.5.0

- Fix `tsp.TimeStampAndCRL` to be a `core.Sequence` instead of a
`core.SequenceOf` *via @joernheissler*
- Added OIDs for Edwards curves from RFC 8410 - via @MatthiasValvekens
- Fixed convenience attributes on `algos.EncryptionAlgorithm` when the
algorithm is RC2 *via @joernheissler*
- Added Microsoft OIDs `microsoft_enrollment_csp_provider`
(`1.3.6.1.4.1.311.13.2.2`), `microsoft_os_version`
(`1.3.6.1.4.1.311.13.2.3`) and `microsoft_request_client_info`
(`1.3.6.1.4.1.311.21.20`)
to `csr.CSRAttributeType` along with supporting extension structures
*via @qha*
- Added Microsoft OID `microsoft_enroll_certtype` (`1.3.6.1.4.1.311.20.2`)
to `x509.ExtensionId` *via @qha*
- Fixed a few bugs with parsing indefinite-length encodings *via @davidben*
- Added various bounds checks to parsing engine *via @davidben*
- Fixed a bug with tags not always being minimally encoded *via @davidben*
- Fixed `cms.RoleSyntax`, `cms.SecurityCategory` and `cms.AttCertIssuer` to
have explicit instead of implicit tagging *via @MatthiasValvekens*
- Fixed tagging of, and default value for fields in `cms.Clearance` *via
@MatthiasValvekens*
- Fixed calling `.dump(force=True)` when the value has undefined/unknown
`core.Sequence` fields. Previously the value would be truncated, now
the existing encoding is preserved.
- Added sMIME capabilities (`1.2.840.113549.1.9.15`) support from RFC 2633
to `cms.CMSAttribute` *via Hellzed*

## 1.4.0

- `core.ObjectIdentifier` and all derived classes now obey X.660 §7.6 and
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Expand Up @@ -110,7 +110,7 @@ faster to an order of magnitude or more.

## Current Release

1.4.0 - [changelog](changelog.md)
1.5.0 - [changelog](changelog.md)

## Dependencies

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -10,7 +10,7 @@


PACKAGE_NAME = 'asn1crypto'
PACKAGE_VERSION = '1.4.0'
PACKAGE_VERSION = '1.5.0'
PACKAGE_ROOT = os.path.dirname(os.path.abspath(__file__))


Expand Down
4 changes: 2 additions & 2 deletions tests/__init__.py
Expand Up @@ -6,8 +6,8 @@
import unittest


__version__ = '1.4.0'
__version_info__ = (1, 4, 0)
__version__ = '1.5.0'
__version_info__ = (1, 5, 0)


def _import_from(mod, path, mod_dir=None):
Expand Down
2 changes: 1 addition & 1 deletion tests/setup.py
Expand Up @@ -10,7 +10,7 @@


PACKAGE_NAME = 'asn1crypto'
PACKAGE_VERSION = '1.4.0'
PACKAGE_VERSION = '1.5.0'
TEST_PACKAGE_NAME = '%s_tests' % PACKAGE_NAME
TESTS_ROOT = os.path.dirname(os.path.abspath(__file__))

Expand Down

0 comments on commit 47f7588

Please sign in to comment.