Skip to content

Commit

Permalink
Bump version: 2.7.0 -> 2.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
andrivet committed Sep 7, 2024
1 parent ad7232e commit dc2338d
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 2.7.0
current_version = 2.7.1
commit = True
tag = True

Expand Down
6 changes: 3 additions & 3 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
Changelog
=========

UNRELEASED
----------
2.7.1 (2024-08-07
-----------------

* Fix OID encoding/decoding for the first octet according to ITU-T X.690
* Fix OID encoding/decoding for the first octet according to ITU-T X.690 (thanks to Ian Neal)

2.7.0 (2023-01-17)
------------------
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
year = '2007-2022'
author = 'Sebastien Andrivet'
copyright = '{0}, {1}'.format(year, author)
version = release = '2.7.0'
version = release = '2.7.1'

pygments_style = 'trac'
templates_path = ['.']
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def read(*names, **kwargs):

setup(
name='asn1',
version='2.7.0',
version='2.7.1',
license='BSD',
description='Python-ASN1 is a simple ASN.1 encoder and decoder for Python 2.7+ and 3.5+.',
long_description='%s\n%s' % (
Expand Down
2 changes: 1 addition & 1 deletion src/asn1.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
from enum import IntEnum
from numbers import Number

__version__ = "2.7.0"
__version__ = "2.7.1"


class Numbers(IntEnum):
Expand Down

0 comments on commit dc2338d

Please sign in to comment.