From f58bd5313c1d94bcd6fef666b8af9eb5ad056da6 Mon Sep 17 00:00:00 2001 From: Tim Burke Date: Wed, 23 Oct 2024 17:10:09 -0700 Subject: [PATCH] Release 1.6.3 Change-Id: If50af3d2715d0c27876eab4cc73106634a1ec359 --- ChangeLog | 6 ++++++ pyeclib/ec_iface.py | 2 +- setup.py | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 603dd37..dc44877 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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 ------------ diff --git a/pyeclib/ec_iface.py b/pyeclib/ec_iface.py index 9be760d..599e7e0 100644 --- a/pyeclib/ec_iface.py +++ b/pyeclib/ec_iface.py @@ -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) diff --git a/setup.py b/setup.py index 3b650c0..df80ce1 100644 --- a/setup.py +++ b/setup.py @@ -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',