Release 1.6.3

Change-Id: If50af3d2715d0c27876eab4cc73106634a1ec359
This commit is contained in:
Tim Burke 2024-10-23 17:10:09 -07:00
parent 84ff0aef28
commit f58bd5313c
3 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
New in 1.6.3
------------
* Only destroy liberasurecode descriptors on liberasurecode versions where it
should be safe to do so.
New in 1.6.2
------------

View File

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