diff --git a/.mailmap b/.mailmap index 3571bd5..8ac1526 100644 --- a/.mailmap +++ b/.mailmap @@ -1,4 +1,8 @@ Mark Storer Mark W. Storer Kevin Greenan Eric Lambert +Eric Lambert Tushar Gohad +Kota Tsuyuzaki +Alistair Coles +Ondřej Nový diff --git a/AUTHORS b/AUTHORS index 7e6cf58..27dffc2 100644 --- a/AUTHORS +++ b/AUTHORS @@ -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) diff --git a/ChangeLog b/ChangeLog index 6381951..a25bc86 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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 ------------- diff --git a/include/erasurecode/erasurecode_version.h b/include/erasurecode/erasurecode_version.h index fadbbb6..1ce86ea 100644 --- a/include/erasurecode/erasurecode_version.h +++ b/include/erasurecode/erasurecode_version.h @@ -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))