Skip to content

Commit baf25d2

Browse files
committed
Bump version: 2.4.0 -> 2.4.1
1 parent e57b2ac commit baf25d2

File tree

5 files changed

+8
-4
lines changed

5 files changed

+8
-4
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.4.0
2+
current_version = 2.4.1
33
commit = True
44
tag = True
55

CHANGELOG.rst

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

4+
2.4.1 (2020-07-16)
5+
6+
* Fix #89 - Replace explicit references to enum34 by enum-compat
7+
48
2.4.0 (2020-06-23)
59

610
* Fix #21 - Invalid decoding in non-Universal classes

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
year = '2007-2020'
2727
author = 'Sebastien Andrivet'
2828
copyright = '{0}, {1}'.format(year, author)
29-
version = release = '2.4.0'
29+
version = release = '2.4.1'
3030

3131
pygments_style = 'trac'
3232
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.4.0',
32+
version='2.4.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
@@ -25,7 +25,7 @@
2525
from enum import IntEnum
2626
from numbers import Number
2727

28-
__version__ = "2.4.0"
28+
__version__ = "2.4.1"
2929

3030

3131
class Numbers(IntEnum):

0 commit comments

Comments
 (0)