Skip to content

Commit dc2338d

Browse files
committed
Bump version: 2.7.0 -> 2.7.1
1 parent ad7232e commit dc2338d

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 2.7.0
2+
current_version = 2.7.1
33
commit = True
44
tag = True
55

CHANGELOG.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
Changelog
22
=========
33

4-
UNRELEASED
5-
----------
4+
2.7.1 (2024-08-07
5+
-----------------
66

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

99
2.7.0 (2023-01-17)
1010
------------------

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
year = '2007-2022'
2828
author = 'Sebastien Andrivet'
2929
copyright = '{0}, {1}'.format(year, author)
30-
version = release = '2.7.0'
30+
version = release = '2.7.1'
3131

3232
pygments_style = 'trac'
3333
templates_path = ['.']

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def read(*names, **kwargs):
2929

3030
setup(
3131
name='asn1',
32-
version='2.7.0',
32+
version='2.7.1',
3333
license='BSD',
3434
description='Python-ASN1 is a simple ASN.1 encoder and decoder for Python 2.7+ and 3.5+.',
3535
long_description='%s\n%s' % (

src/asn1.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
from enum import IntEnum
2727
from numbers import Number
2828

29-
__version__ = "2.7.0"
29+
__version__ = "2.7.1"
3030

3131

3232
class Numbers(IntEnum):

0 commit comments

Comments
 (0)