Prep for 1.6.1 release
Change-Id: I37735a81131612464caff1d08b78d5efb78d694cchanges/71/833471/2 1.6.1
parent
7f05a784fb
commit
008840ca19
2
AUTHORS
2
AUTHORS
|
@ -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)
|
||||
|
|
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
|
||||
------------
|
||||
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in New Issue