File tree Expand file tree Collapse file tree 3 files changed +9
-13
lines changed Expand file tree Collapse file tree 3 files changed +9
-13
lines changed Original file line number Diff line number Diff line change @@ -3,13 +3,7 @@ Bencoder.pyx
33
44A 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-
2515Install
2616-------
2717
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+
5652Version 2.0.0
5753~~~~~~~~~~~~~~~
5854
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ def get_tag(self):
9494
9595setup (
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' ,
You can’t perform that action at this time.
0 commit comments