Release 1.5.0
Change-Id: Id6ea5043c983ec0f882feedb6c970e3994961d6c
This commit is contained in:
parent
4e0f35a34d
commit
0cdfbf6f6e
1
.mailmap
1
.mailmap
@ -5,3 +5,4 @@ Tushar Gohad <tushar.gohad@intel.com> <tusharsg@gmail.com>
|
|||||||
Tushar Gohad <tushar.gohad@intel.com> <Tushar Gohad>
|
Tushar Gohad <tushar.gohad@intel.com> <Tushar Gohad>
|
||||||
Eric Lambert <eric_lambert@xyratex.com> <eric.lambert@seagate.com>
|
Eric Lambert <eric_lambert@xyratex.com> <eric.lambert@seagate.com>
|
||||||
Kota Tsuyuzaki <bloodeagle40234@gmail.com> <tsuyuzaki.kota@lab.ntt.co.jp>
|
Kota Tsuyuzaki <bloodeagle40234@gmail.com> <tsuyuzaki.kota@lab.ntt.co.jp>
|
||||||
|
Kota Tsuyuzaki <bloodeagle40234@gmail.com> <bloodeagle40123@gmail.com>
|
||||||
|
20
AUTHORS
20
AUTHORS
@ -1,18 +1,22 @@
|
|||||||
Original Authors
|
Original Authors
|
||||||
----------------
|
----------------
|
||||||
Tushar Gohad (tushar.gohad@intel.com)
|
|
||||||
Kevin Greenan (kmgreen2@gmail.com)
|
Kevin Greenan (kmgreen2@gmail.com)
|
||||||
|
Tushar Gohad (tushar.gohad@intel.com)
|
||||||
|
|
||||||
Contributors
|
Contributors
|
||||||
------------
|
------------
|
||||||
|
Clay Gerrard (clay.gerrard@gmail.com)
|
||||||
|
Davanum Srinivas (davanum@gmail.com)
|
||||||
|
Eric Lambert (eric_lambert@xyratex.com)
|
||||||
|
Jim Cheung (jim.cheung@phazr.io)
|
||||||
|
John Dickinson (me@not.mn)
|
||||||
|
Kota Tsuyuzaki (bloodeagle40234@gmail.com)
|
||||||
|
Mark Storer (Mark.Storer@evault.com)
|
||||||
|
Ondřej Nový (ondrej.novy@firma.seznam.cz)
|
||||||
|
Pete Zaitcev (zaitcev@kotori.zaitcev.us)
|
||||||
|
Thiago da Silva (thiago@redhat.com)
|
||||||
Timur Alperovich (timuralp@swiftstack.com)
|
Timur Alperovich (timuralp@swiftstack.com)
|
||||||
Tim Burke (tim.burke@gmail.com)
|
Tim Burke (tim.burke@gmail.com)
|
||||||
Thiago da Silva (thiago@redhat.com)
|
|
||||||
Eric Lambert (eric_lambert@xyratex.com)
|
|
||||||
Ondřej Nový (ondrej.novy@firma.seznam.cz)
|
|
||||||
Davanum Srinivas (davanum@gmail.com)
|
|
||||||
Victor Stinner (vstinner@redhat.com)
|
Victor Stinner (vstinner@redhat.com)
|
||||||
Mark Storer (Mark.Storer@evault.com)
|
|
||||||
Kota Tsuyuzaki (bloodeagle40123@gmail.com)
|
|
||||||
Pete Zaitcev (zaitcev@kotori.zaitcev.us)
|
|
||||||
Yuan Zhou (yuan.zhou@intel.com)
|
Yuan Zhou (yuan.zhou@intel.com)
|
||||||
|
|
||||||
|
11
ChangeLog
11
ChangeLog
@ -1,7 +1,16 @@
|
|||||||
|
New in 1.5.0
|
||||||
|
------------
|
||||||
|
|
||||||
|
* Added support for Phazr.IO libphazr library.
|
||||||
|
* Fixed error handling that caused segfaults.
|
||||||
|
* Use version number exposed by liberasurecode.
|
||||||
|
* various other minor bugs fixes and improvements.
|
||||||
|
|
||||||
|
|
||||||
New in 1.4.0
|
New in 1.4.0
|
||||||
------------
|
------------
|
||||||
|
|
||||||
* Add support for ISA-L Cauchy
|
* Added support for ISA-L Cauchy
|
||||||
* Fixed memory leak in get_metadata
|
* Fixed memory leak in get_metadata
|
||||||
* Added soft warning log line when using liberasurecode <1.3.1
|
* Added soft warning log line when using liberasurecode <1.3.1
|
||||||
|
|
||||||
|
@ -48,9 +48,9 @@ copyright = u'2016, Kevin Greenan, Tushar Gohad, Kota Tsuyuzaki'
|
|||||||
# built documents.
|
# built documents.
|
||||||
#
|
#
|
||||||
# The short X.Y version.
|
# The short X.Y version.
|
||||||
version = '1.4.0'
|
version = '1.5.0'
|
||||||
# The full version, including alpha/beta/rc tags.
|
# The full version, including alpha/beta/rc tags.
|
||||||
release = '1.4.0'
|
release = '1.5.0'
|
||||||
|
|
||||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||||
# for a list of supported languages.
|
# for a list of supported languages.
|
||||||
|
4
setup.py
4
setup.py
@ -159,7 +159,7 @@ class install(_install):
|
|||||||
|
|
||||||
module = Extension('pyeclib_c',
|
module = Extension('pyeclib_c',
|
||||||
define_macros=[('MAJOR VERSION', '1'),
|
define_macros=[('MAJOR VERSION', '1'),
|
||||||
('MINOR VERSION', '4')],
|
('MINOR VERSION', '5')],
|
||||||
include_dirs=[default_python_incdir,
|
include_dirs=[default_python_incdir,
|
||||||
'src/c/pyeclib_c',
|
'src/c/pyeclib_c',
|
||||||
'/usr/include',
|
'/usr/include',
|
||||||
@ -172,7 +172,7 @@ module = Extension('pyeclib_c',
|
|||||||
sources=['src/c/pyeclib_c/pyeclib_c.c'])
|
sources=['src/c/pyeclib_c/pyeclib_c.c'])
|
||||||
|
|
||||||
setup(name='pyeclib',
|
setup(name='pyeclib',
|
||||||
version='1.4.0',
|
version='1.5.0',
|
||||||
author='Kevin Greenan',
|
author='Kevin Greenan',
|
||||||
author_email='kmgreen2@gmail.com',
|
author_email='kmgreen2@gmail.com',
|
||||||
maintainer='Kevin Greenan and Tushar Gohad',
|
maintainer='Kevin Greenan and Tushar Gohad',
|
||||||
|
Loading…
Reference in New Issue
Block a user