Prep for 1.6.2rc1 release

Change-Id: Ie1232965c9a9a4c0a9ae26f7def470519dbf33ef
This commit is contained in:
Tim Burke
2024-10-21 16:25:50 -07:00
parent c59a50ba8b
commit 726f6379e0
4 changed files with 14 additions and 2 deletions

View File

@@ -16,14 +16,17 @@ jinyuanliu (liujinyuan@inspur.com)
John Dickinson (me@not.mn)
Kota Tsuyuzaki (bloodeagle40234@gmail.com)
Mark Storer (Mark.Storer@evault.com)
Martin Kopec (mkopec@redhat.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)
Takashi Kajinami (kajinamit@oss.nttdata.com)
Thiago da Silva (thiago@redhat.com)
Tim Burke (tim.burke@gmail.com)
Timur Alperovich (timuralp@swiftstack.com)
Tovin Seven (vinhnt@vn.fujitsu.com)
Victor Stinner (vstinner@redhat.com)
wangjiaqi07 (wangjiaqi07@inspur.com)
Yuan Zhou (yuan.zhou@intel.com)

View File

@@ -1,3 +1,12 @@
New in 1.6.2
------------
* Updated liberasurecode dependency to 1.4.0. For more information,
see https://bugs.launchpad.net/pyeclib/+bug/1639691
* Fix a resource leak when creating many ECDrivers.
* Test against Python 3.11 - 3.13.
* Fix building on free-threaded Python 3.13.
New in 1.6.1
------------

View File

@@ -49,7 +49,7 @@ def PyECLibVersion(z, y, x):
PYECLIB_MAJOR = 1
PYECLIB_MINOR = 6
PYECLIB_REV = 1
PYECLIB_REV = 2
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.1',
version='1.6.2rc1',
author='Kevin Greenan',
author_email='kmgreen2@gmail.com',
maintainer='Kevin Greenan and Tushar Gohad',