Prep for 1.6.1 release

Change-Id: I37735a81131612464caff1d08b78d5efb78d694c
This commit is contained in:
Tim Burke 2022-03-11 13:42:33 -08:00
parent 7f05a784fb
commit 008840ca19
5 changed files with 19 additions and 5 deletions

View File

@ -12,9 +12,11 @@ Eric Lambert (eric_lambert@xyratex.com)
Ian Wienand (iwienand@redhat.com)
James E. Blair (jeblair@redhat.com)
Jim Cheung (jim.cheung@phazr.io)
jinyuanliu (liujinyuan@inspur.com)
John Dickinson (me@not.mn)
Kota Tsuyuzaki (bloodeagle40234@gmail.com)
Mark Storer (Mark.Storer@evault.com)
Matthew Oliver (matt@oliver.net.au)
Ondřej Nový (ondrej.novy@firma.seznam.cz)
Paul Belanger (pabelanger@redhat.com)
Pete Zaitcev (zaitcev@kotori.zaitcev.us)

View File

@ -1,3 +1,15 @@
New in 1.6.1
------------
* Deprecate Jerasure support
* Use Py_ssize_t when calling PyArg_Parse
* Test against Python 3.8 - 3.10
* Use the Python Stable ABI; abi3 wheels may now be built with
python setup.py bdist_wheel --py-limited-api=cp35
* Various other minor bugs fixes and improvements
New in 1.6.0
------------

View File

@ -48,9 +48,9 @@ copyright = u'2019, Kevin Greenan, Tushar Gohad, Kota Tsuyuzaki'
# built documents.
#
# The short X.Y version.
version = '1.6.0'
version = '1.6.1'
# The full version, including alpha/beta/rc tags.
release = '1.6.0'
release = '1.6.1'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

View File

@ -70,8 +70,8 @@ def PyECLibVersion(z, y, x):
PYECLIB_MAJOR = 1
PYECLIB_MINOR = 1
PYECLIB_REV = 2
PYECLIB_MINOR = 6
PYECLIB_REV = 1
PYECLIB_VERSION = PyECLibVersion(PYECLIB_MAJOR, PYECLIB_MINOR,
PYECLIB_REV)

View File

@ -226,7 +226,7 @@ module = Extension('pyeclib_c',
sources=['src/c/pyeclib_c/pyeclib_c.c'])
setup(name='pyeclib',
version='1.6.0',
version='1.6.1',
author='Kevin Greenan',
author_email='kmgreen2@gmail.com',
maintainer='Kevin Greenan and Tushar Gohad',