Skip to content

Commit 1ef770d

Browse files
committed
bump version to 2.0.0
1 parent d6d801d commit 1ef770d

File tree

6 files changed

+12
-5
lines changed

6 files changed

+12
-5
lines changed

Diff for: README.rst

+7
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,13 @@ Usage
5353
ChangeLog
5454
----------
5555

56+
Version 2.0.0
57+
~~~~~~~~~~~~~~~
58+
59+
+ Use built-in dict instead of OrderedDict on Python >= 3.7
60+
+ Drop support for Python 3.3
61+
+ Fix bytes parsing when used with python-future `#41 <https://github.com/whtsky/bencoder.pyx/pull/41>`_
62+
5663
Version 1.2.1
5764
~~~~~~~~~~~~~~~
5865

Diff for: bencoder.pyx

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
# Based on https://github.com/karamanolev/bencode3/blob/master/bencode.py
1414

15-
__version__ = '1.2.1'
15+
__version__ = '2.0.0'
1616

1717

1818

Diff for: release.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
rm -rf wheelhouse/
33
rm -rf dist/
44
cython bencoder.pyx
5-
python setup.py sdist --formats=zip,gztar register
5+
python setup.py sdist --formats=zip,gztar
66
tox -c tox-wheels.ini
77
twine upload dist/*
88
twine upload wheelhouse/*

Diff for: setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def get_tag(self):
9494

9595
setup(
9696
name='bencoder.pyx',
97-
version='1.2.1',
97+
version='2.0.0',
9898
description='Yet another bencode implementation in Cython',
9999
long_description=open('README.rst', 'r').read(),
100100
author='whtsky',

Diff for: tox-wheels.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py27, py33, py34, py35, py36
2+
envlist = py27, py34, py35, py36, py37
33

44
[testenv]
55
commands = pip wheel {toxinidir} -w {toxinidir}/wheelhouse/

Diff for: tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py27, py33, py34, py35, py36, pypy, pypy3
2+
envlist = py27, py34, py35, py36, py37, pypy, pypy3
33

44
[testenv]
55
commands =

0 commit comments

Comments
 (0)