Prep for 1.6.1 release
Change-Id: I37735a81131612464caff1d08b78d5efb78d694c
This commit is contained in:
2
AUTHORS
2
AUTHORS
@@ -12,9 +12,11 @@ Eric Lambert (eric_lambert@xyratex.com)
|
|||||||
Ian Wienand (iwienand@redhat.com)
|
Ian Wienand (iwienand@redhat.com)
|
||||||
James E. Blair (jeblair@redhat.com)
|
James E. Blair (jeblair@redhat.com)
|
||||||
Jim Cheung (jim.cheung@phazr.io)
|
Jim Cheung (jim.cheung@phazr.io)
|
||||||
|
jinyuanliu (liujinyuan@inspur.com)
|
||||||
John Dickinson (me@not.mn)
|
John Dickinson (me@not.mn)
|
||||||
Kota Tsuyuzaki (bloodeagle40234@gmail.com)
|
Kota Tsuyuzaki (bloodeagle40234@gmail.com)
|
||||||
Mark Storer (Mark.Storer@evault.com)
|
Mark Storer (Mark.Storer@evault.com)
|
||||||
|
Matthew Oliver (matt@oliver.net.au)
|
||||||
Ondřej Nový (ondrej.novy@firma.seznam.cz)
|
Ondřej Nový (ondrej.novy@firma.seznam.cz)
|
||||||
Paul Belanger (pabelanger@redhat.com)
|
Paul Belanger (pabelanger@redhat.com)
|
||||||
Pete Zaitcev (zaitcev@kotori.zaitcev.us)
|
Pete Zaitcev (zaitcev@kotori.zaitcev.us)
|
||||||
|
12
ChangeLog
12
ChangeLog
@@ -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
|
New in 1.6.0
|
||||||
------------
|
------------
|
||||||
|
|
||||||
|
@@ -48,9 +48,9 @@ copyright = u'2019, Kevin Greenan, Tushar Gohad, Kota Tsuyuzaki'
|
|||||||
# built documents.
|
# built documents.
|
||||||
#
|
#
|
||||||
# The short X.Y version.
|
# The short X.Y version.
|
||||||
version = '1.6.0'
|
version = '1.6.1'
|
||||||
# The full version, including alpha/beta/rc tags.
|
# 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
|
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||||
# for a list of supported languages.
|
# for a list of supported languages.
|
||||||
|
@@ -70,8 +70,8 @@ def PyECLibVersion(z, y, x):
|
|||||||
|
|
||||||
|
|
||||||
PYECLIB_MAJOR = 1
|
PYECLIB_MAJOR = 1
|
||||||
PYECLIB_MINOR = 1
|
PYECLIB_MINOR = 6
|
||||||
PYECLIB_REV = 2
|
PYECLIB_REV = 1
|
||||||
PYECLIB_VERSION = PyECLibVersion(PYECLIB_MAJOR, PYECLIB_MINOR,
|
PYECLIB_VERSION = PyECLibVersion(PYECLIB_MAJOR, PYECLIB_MINOR,
|
||||||
PYECLIB_REV)
|
PYECLIB_REV)
|
||||||
|
|
||||||
|
2
setup.py
2
setup.py
@@ -226,7 +226,7 @@ module = Extension('pyeclib_c',
|
|||||||
sources=['src/c/pyeclib_c/pyeclib_c.c'])
|
sources=['src/c/pyeclib_c/pyeclib_c.c'])
|
||||||
|
|
||||||
setup(name='pyeclib',
|
setup(name='pyeclib',
|
||||||
version='1.6.0',
|
version='1.6.1',
|
||||||
author='Kevin Greenan',
|
author='Kevin Greenan',
|
||||||
author_email='kmgreen2@gmail.com',
|
author_email='kmgreen2@gmail.com',
|
||||||
maintainer='Kevin Greenan and Tushar Gohad',
|
maintainer='Kevin Greenan and Tushar Gohad',
|
||||||
|
Reference in New Issue
Block a user