Merge "Release 1.5.0"

This commit is contained in:
Jenkins 2017-06-29 17:36:37 +00:00 committed by Gerrit Code Review
commit 24038b3588
4 changed files with 38 additions and 19 deletions

View File

@ -1,4 +1,8 @@
Mark Storer <Mark.Storer@evault.com> Mark W. Storer <mark.storer@evault.com>
Kevin Greenan <kmgreen2@gmail.com> <kmg@box.com>
Eric Lambert <eric_lambert@xyratex.com> <eric.lambert@seagate.com>
Eric Lambert <eric_lambert@xyratex.com> <eric.d.lambert@gmail.com>
Tushar Gohad <tushar.gohad@intel.com> <tusharsg@gmail.com>
Kota Tsuyuzaki <tsuyuzaki.kota@lab.ntt.co.jp> <bloodeagle40234@gmail.com>
Alistair Coles <alistairncoles@gmail.com> <alistair.coles@hpe.com>
Ondřej Nový <novy@ondrej.org> <ondrej.novy@firma.seznam.cz>

37
AUTHORS
View File

@ -1,25 +1,26 @@
Original Authors
----------------
* Tushar Gohad
* Kevin M Greenan
* Eric Lambert
* Mark Storer
Tushar Gohad (tushar.gohad@intel.com)
Kevin Greenan (kmgreen2@gmail.com)
Eric Lambert (eric_lambert@xyratex.com)
Mark Storer (Mark.Storer@evault.com)
Contributors
----------------
* Timur Alperovich
* Alistair Coles
* Thiago da Silva
* Thomas Goirand
* Andreas Jaeger
* Ryuta Kon
* Chris Lamb
* Eric Lambert
* Dirk Mueller
* Ondřej Nový
* James Page
* Kota Tsuyuzaki
* Pete Zaitcev
* gengchc2
Timur Alperovich (timuralp@swiftstack.com)
Alistair Coles (alistairncoles@gmail.com)
Thiago da Silva (thiago@redhat.com)
Andreas Jaeger (aj@suse.com)
Chris Lamb (lamby@debian.org)
Dirk Mueller (dirk@dmllr.de)
James Page (james.page@ubuntu.com)
Kota Tsuyuzaki (tsuyuzaki.kota@lab.ntt.co.jp)
Pete Zaitcev (zaitcev@kotori.zaitcev.us)
gengchc2 (geng.changcai2@zte.com.cn)
Daniel Axtens (dja@axtens.net)
Tim Burke (tim.burke@gmail.com)
John Dickinson (me@not.mn)
Jim Cheung (jim.cheung@phazr.io)
Ondřej Nový (novy@ondrej.org)

View File

@ -1,3 +1,17 @@
Release 1.5.0
-------------
. Added support for Phazr.IO libphazr library
. Fixed memory leaks and initialization errors in Jerasure
. Fixed memory leak in ISA-L
. Changed the Galois Field multiplication table in ISA-L to be calculated
only on init.
. Fixed valgrind-check to enable finding memory-leaks.
. Fixed several memory leaks in tests and also in the built-in rs_vand
implementation.
. Fixed warning on automake tool
. Added compiler flag to disable AVX optimizations.
Release 1.4.0
-------------

View File

@ -26,7 +26,7 @@
#define _ERASURECODE_VERSION_H_
#define _MAJOR 1
#define _MINOR 4
#define _MINOR 5
#define _REV 0
#define _VERSION(x, y, z) ((x << 16) | (y << 8) | (z))