1.4.0 release

Change-Id: I1d8d6b5711a503eaa7c57c70b4c20a329f572af2
Signed-off-by: Thiago da Silva <thiago@redhat.com>
This commit is contained in:
Thiago da Silva 2016-12-07 18:39:37 +00:00
parent 4c8f8a65d2
commit 448c7d0d1c
3 changed files with 11 additions and 2 deletions

View File

@ -10,6 +10,7 @@ Contributors
----------------
* Timur Alperovich
* Alistair Coles
* Thiago da Silva
* Thomas Goirand
* Andreas Jaeger

View File

@ -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
-------------

View File

@ -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)