Skip to content

Commit a4afeac

Browse files
committed
bump version to 1.2.1
1 parent 315841a commit a4afeac

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

README.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,12 @@ Usage
4646
ChangeLog
4747
----------
4848

49+
Version 1.2.1
50+
~~~~~~~~~~~~~~~
51+
52+
+ Drop support for Python 2.6
53+
+ Performance boost for `bencode` method. `#7 <https://github.com/whtsky/bencoder.pyx/issues/7>`_
54+
4955
Version 1.2.0
5056
~~~~~~~~~~~~~~~
5157

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__ = '1.2.0'
15+
__version__ = '1.2.1'
1616

1717

1818
try:

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bdist_wheel]
22

3-
[pytest]
3+
[tool:pytest]
44
testpaths = tests
55
addopts = -rw

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def get_tag(self):
9797

9898
setup(
9999
name='bencoder.pyx',
100-
version='1.2.0',
100+
version='1.2.1',
101101
description='Yet another bencode implementation in Cython',
102102
long_description=open('README.rst', 'r').read(),
103103
author='whtsky',

0 commit comments

Comments
 (0)