Skip to content

Commit 42073ab

Browse files
committed
bump version to 2.0.1
1 parent f846079 commit 42073ab

File tree

3 files changed

+9
-13
lines changed

3 files changed

+9
-13
lines changed

README.rst

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,7 @@ Bencoder.pyx
33

44
A fast bencode implementation in Cython supports both Python2 & Python3 .
55

6-
.. image:: https://img.shields.io/travis/whtsky/bencoder.pyx/master.svg?maxAge=3600&label=macOS
7-
:alt: macOS Test Status
8-
:target: https://travis-ci.org/whtsky/bencoder.pyx
9-
.. image:: https://img.shields.io/appveyor/ci/whtsky/bencoder-pyx/master.svg?maxAge=3600&label=Windows
10-
:alt: Windows Test Status
11-
:target: https://ci.appveyor.com/project/whtsky/bencoder-pyx
12-
.. image:: https://img.shields.io/circleci/ci/whtsky/bencoder-pyx/master.svg?maxAge=3600&label=Linux
6+
.. image:: https://img.shields.io/circleci/build/github/whtsky/bencoder.pyx/master
137
:alt: Linux Test Status
148
:target: https://circleci.com/gh/whtsky/bencoder.pyx
159
.. image:: https://img.shields.io/pypi/l/bencoder.pyx.svg
@@ -18,10 +12,6 @@ A fast bencode implementation in Cython supports both Python2 & Python3 .
1812
.. image:: https://codecov.io/gh/whtsky/bencoder.pyx/branch/master/graph/badge.svg
1913
:alt: Codecov Coverage
2014
:target: https://codecov.io/gh/whtsky/bencoder.pyx
21-
.. image:: https://pypistats.com/badge/bencoder-pyx.svg
22-
:alt: bencoder-pyx PyPI Downloads
23-
:target: https://pypistats.com/package/bencoder-pyx
24-
2515
Install
2616
-------
2717

@@ -53,6 +43,12 @@ Usage
5343
ChangeLog
5444
----------
5545

46+
Version 2.0.1
47+
~~~~~~~~~~~~~~~
48+
49+
+ Add support for Python 3.8
50+
+ Drop support for Python 3.4
51+
5652
Version 2.0.0
5753
~~~~~~~~~~~~~~~
5854

bencoder.pyx

Lines changed: 1 addition & 1 deletion
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__ = '2.0.0'
15+
__version__ = '2.0.1'
1616

1717

1818

setup.py

Lines changed: 1 addition & 1 deletion
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='2.0.0',
97+
version='2.0.1',
9898
description='Yet another bencode implementation in Cython',
9999
long_description=open('README.rst', 'r').read(),
100100
author='whtsky',

0 commit comments

Comments
 (0)