Skip to content

Commit d96e396

Browse files
committed
Bump version: 2.7.1 -> 2.8.0
1 parent caf2958 commit d96e396

File tree

5 files changed

+14
-6
lines changed

5 files changed

+14
-6
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 2.7.1
2+
current_version = 2.8.0
33
commit = True
44
tag = True
55

CHANGELOG.rst

+10-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,16 @@
11
Changelog
22
=========
33

4-
2.7.1 (2024-08-07
5-
-----------------
4+
2.8.9 (2025-02-20)
5+
------------------
6+
7+
* PR #285 - Use Enum with Tag for pretty representation (thanks to @Julien00859)
8+
* Make explicit that Python 3.12 and 3.13 are supported
9+
* Fix some links in the documentation
10+
* Add a Docker file for testing
11+
12+
2.7.1 (2024-08-07)
13+
------------------
614

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

docs/conf.py

+1-1
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.1'
30+
version = release = '2.8.0'
3131

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

setup.py

+1-1
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.1',
32+
version='2.8.0',
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
from contextlib import contextmanager
2626
from enum import IntEnum
2727

28-
__version__ = "2.7.1"
28+
__version__ = "2.8.0"
2929

3030

3131
class HexEnum(IntEnum):

0 commit comments

Comments
 (0)