Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 008840c

Browse files
committed
Prep for 1.6.1 release
Change-Id: I37735a81131612464caff1d08b78d5efb78d694c
1 parent 7f05a78 commit 008840c

File tree

5 files changed

+19
-5
lines changed

5 files changed

+19
-5
lines changed

AUTHORS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,11 @@ Eric Lambert ([email protected])
1212
Ian Wienand ([email protected])
1313
James E. Blair ([email protected])
1414
Jim Cheung ([email protected])
15+
jinyuanliu ([email protected])
1516
John Dickinson ([email protected])
1617
Kota Tsuyuzaki ([email protected])
1718
Mark Storer ([email protected])
19+
Matthew Oliver ([email protected])
1820
Ondřej Nový ([email protected])
1921
Paul Belanger ([email protected])
2022
Pete Zaitcev ([email protected])

ChangeLog

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
New in 1.6.1
2+
------------
3+
4+
* Deprecate Jerasure support
5+
* Use Py_ssize_t when calling PyArg_Parse
6+
* Test against Python 3.8 - 3.10
7+
* Use the Python Stable ABI; abi3 wheels may now be built with
8+
9+
python setup.py bdist_wheel --py-limited-api=cp35
10+
11+
* Various other minor bugs fixes and improvements
12+
113
New in 1.6.0
214
------------
315

doc/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@
4848
# built documents.
4949
#
5050
# The short X.Y version.
51-
version = '1.6.0'
51+
version = '1.6.1'
5252
# The full version, including alpha/beta/rc tags.
53-
release = '1.6.0'
53+
release = '1.6.1'
5454

5555
# The language for content autogenerated by Sphinx. Refer to documentation
5656
# for a list of supported languages.

pyeclib/ec_iface.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@ def PyECLibVersion(z, y, x):
7070

7171

7272
PYECLIB_MAJOR = 1
73-
PYECLIB_MINOR = 1
74-
PYECLIB_REV = 2
73+
PYECLIB_MINOR = 6
74+
PYECLIB_REV = 1
7575
PYECLIB_VERSION = PyECLibVersion(PYECLIB_MAJOR, PYECLIB_MINOR,
7676
PYECLIB_REV)
7777

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ def run(self):
226226
sources=['src/c/pyeclib_c/pyeclib_c.c'])
227227

228228
setup(name='pyeclib',
229-
version='1.6.0',
229+
version='1.6.1',
230230
author='Kevin Greenan',
231231
author_email='[email protected]',
232232
maintainer='Kevin Greenan and Tushar Gohad',

0 commit comments

Comments
 (0)