From 448c7d0d1cecca219c5d094f0d5e9ccecc7d119c Mon Sep 17 00:00:00 2001 From: Thiago da Silva Date: Wed, 7 Dec 2016 18:39:37 +0000 Subject: [PATCH] 1.4.0 release Change-Id: I1d8d6b5711a503eaa7c57c70b4c20a329f572af2 Signed-off-by: Thiago da Silva --- AUTHORS | 1 + ChangeLog | 8 ++++++++ include/erasurecode/erasurecode_version.h | 4 ++-- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/AUTHORS b/AUTHORS index b04db50..7e6cf58 100644 --- a/AUTHORS +++ b/AUTHORS @@ -10,6 +10,7 @@ Contributors ---------------- * Timur Alperovich + * Alistair Coles * Thiago da Silva * Thomas Goirand * Andreas Jaeger diff --git a/ChangeLog b/ChangeLog index 9a4e228..6381951 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +Release 1.4.0 +------------- + + . Added support for ISA-L Cauchy + . Added get_version functionality to library + . Fixed reconstruct to return an error when memory allocation failed + . Fixed posix_memalign error handling + Release 1.3.1 ------------- diff --git a/include/erasurecode/erasurecode_version.h b/include/erasurecode/erasurecode_version.h index 7a6fafd..fadbbb6 100644 --- a/include/erasurecode/erasurecode_version.h +++ b/include/erasurecode/erasurecode_version.h @@ -26,8 +26,8 @@ #define _ERASURECODE_VERSION_H_ #define _MAJOR 1 -#define _MINOR 3 -#define _REV 1 +#define _MINOR 4 +#define _REV 0 #define _VERSION(x, y, z) ((x << 16) | (y << 8) | (z)) #define LIBERASURECODE_VERSION _VERSION(_MAJOR, _MINOR, _REV)