Skip to content

Commit 7516c58

Browse files
author
Sébastien Andrivet
committed
Fix a mistake in conf.py (licence), do some cleanup, bump minor version
1 parent 1c40fdc commit 7516c58

File tree

5 files changed

+17
-14
lines changed

5 files changed

+17
-14
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.0.0
2+
current_version = 2.1.0
33
commit = True
44
tag = True
55

CHANGELOG.rst

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,16 @@
1-
21
Changelog
32
=========
43

5-
2.0.0 (2016-12-17)
6-
-----------------------------------------
4+
2.1.0 (2016-12-18)
5+
------------------
6+
7+
* Add more documentation
8+
* Use (simulated) enumerations
9+
* Add Python 2.6 in automated checks and tests
10+
* Add type hints (for static checking) and fix some code
11+
12+
2.0.0 (2016-12-16)
13+
------------------
714

815
* First public release by Sebastien Andrivet
916
* Support both python 2 and 3 (with Python-Future)
@@ -13,6 +20,6 @@ Changelog
1320
* Code reorganization
1421

1522
0.9 (2011-05-18)
16-
-----------------------------------------
23+
----------------
1724

1825
* Initial public release by Geert Jansen

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.0.0'
29+
version = release = '2.1.0'
3030

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

setup.py

Lines changed: 3 additions & 7 deletions
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.0.0',
27+
version='2.1.0',
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' % (
@@ -40,25 +40,21 @@ def read(*names, **kwargs):
4040
include_package_data=True,
4141
zip_safe=False,
4242
classifiers=[
43-
# complete classifier list: http://pypi.python.org/pypi?%3Aaction=list_classifiers
4443
'Development Status :: 5 - Production/Stable',
4544
'Intended Audience :: Developers',
46-
'License :: OSI Approved :: BSD License',
45+
'License :: OSI Approved :: MIT License',
4746
'Operating System :: Unix',
4847
'Operating System :: POSIX',
4948
'Operating System :: Microsoft :: Windows',
5049
'Programming Language :: Python',
50+
'Programming Language :: Python :: 2.6',
5151
'Programming Language :: Python :: 2.7',
5252
'Programming Language :: Python :: 3',
5353
'Programming Language :: Python :: 3.3',
5454
'Programming Language :: Python :: 3.4',
5555
'Programming Language :: Python :: 3.5',
5656
'Programming Language :: Python :: Implementation :: CPython',
5757
'Programming Language :: Python :: Implementation :: PyPy',
58-
# uncomment if you test on these interpreters:
59-
# 'Programming Language :: Python :: Implementation :: IronPython',
60-
# 'Programming Language :: Python :: Implementation :: Jython',
61-
# 'Programming Language :: Python :: Implementation :: Stackless',
6258
'Topic :: Utilities',
6359
],
6460
keywords=[

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.0.0"
26+
__version__ = "2.1.0"
2727

2828

2929
class Numbers(object):

0 commit comments

Comments
 (0)