Skip to content

Commit 6c087c3

Browse files
committed
Bump version: 2.1.0 → 2.1.1
1 parent 632d64f commit 6c087c3

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-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.1.0
2+
current_version = 2.1.1
33
commit = True
44
tag = True
55

docs/conf.py

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

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

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def read(*names, **kwargs):
2424

2525
setup(
2626
name='asn1',
27-
version='2.1.0',
27+
version='2.1.1',
2828
license='BSD',
2929
description='Python-ASN1 is a simple ASN.1 encoder and decoder for Python 2.6+ and 3.3+.',
3030
long_description='%s\n%s' % (
@@ -53,6 +53,7 @@ def read(*names, **kwargs):
5353
'Programming Language :: Python :: 3.3',
5454
'Programming Language :: Python :: 3.4',
5555
'Programming Language :: Python :: 3.5',
56+
'Programming Language :: Python :: 3.6',
5657
'Programming Language :: Python :: Implementation :: CPython',
5758
'Programming Language :: Python :: Implementation :: PyPy',
5859
'Topic :: Utilities',

src/asn1.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
from builtins import str
2424

2525

26-
__version__ = "2.1.0"
26+
__version__ = "2.1.1"
2727

2828

2929
class Numbers(object):

0 commit comments

Comments
 (0)