Skip to content

Commit

Permalink
bump version to 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
whtsky committed Nov 15, 2018
1 parent d6d801d commit 1ef770d
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 5 deletions.
7 changes: 7 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,13 @@ Usage
ChangeLog
----------

Version 2.0.0
~~~~~~~~~~~~~~~

+ Use built-in dict instead of OrderedDict on Python >= 3.7
+ Drop support for Python 3.3
+ Fix bytes parsing when used with python-future `#41 <https://github.com/whtsky/bencoder.pyx/pull/41>`_

Version 1.2.1
~~~~~~~~~~~~~~~

Expand Down
2 changes: 1 addition & 1 deletion bencoder.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

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

__version__ = '1.2.1'
__version__ = '2.0.0'



Expand Down
2 changes: 1 addition & 1 deletion release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
rm -rf wheelhouse/
rm -rf dist/
cython bencoder.pyx
python setup.py sdist --formats=zip,gztar register
python setup.py sdist --formats=zip,gztar
tox -c tox-wheels.ini
twine upload dist/*
twine upload wheelhouse/*
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def get_tag(self):

setup(
name='bencoder.pyx',
version='1.2.1',
version='2.0.0',
description='Yet another bencode implementation in Cython',
long_description=open('README.rst', 'r').read(),
author='whtsky',
Expand Down
2 changes: 1 addition & 1 deletion tox-wheels.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py27, py33, py34, py35, py36
envlist = py27, py34, py35, py36, py37

[testenv]
commands = pip wheel {toxinidir} -w {toxinidir}/wheelhouse/
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py27, py33, py34, py35, py36, pypy, pypy3
envlist = py27, py34, py35, py36, py37, pypy, pypy3

[testenv]
commands =
Expand Down

0 comments on commit 1ef770d

Please sign in to comment.