From 008840ca19e434f698f1f0726bdc973724fe1d76 Mon Sep 17 00:00:00 2001 From: Tim Burke Date: Fri, 11 Mar 2022 13:42:33 -0800 Subject: Prep for 1.6.1 release Change-Id: I37735a81131612464caff1d08b78d5efb78d694c --- AUTHORS | 2 ++ ChangeLog | 12 ++++++++++++ doc/source/conf.py | 4 ++-- pyeclib/ec_iface.py | 4 ++-- setup.py | 2 +- 5 files changed, 19 insertions(+), 5 deletions(-) diff --git a/AUTHORS b/AUTHORS index 70e376e..374bc0b 100644 --- a/AUTHORS +++ b/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) diff --git a/ChangeLog b/ChangeLog index e4472d2..b5a79cf 100644 --- a/ChangeLog +++ b/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 ------------ diff --git a/doc/source/conf.py b/doc/source/conf.py index 55b6f7d..9fb793b 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -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. diff --git a/pyeclib/ec_iface.py b/pyeclib/ec_iface.py index fa50249..868c48a 100644 --- a/pyeclib/ec_iface.py +++ b/pyeclib/ec_iface.py @@ -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) diff --git a/setup.py b/setup.py index 8620347..27d0502 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.0', + version='1.6.1', author='Kevin Greenan', author_email='kmgreen2@gmail.com', maintainer='Kevin Greenan and Tushar Gohad', -- cgit v1.2.1