Merge "1.4.0 release"

This commit is contained in:
Jenkins 2016-12-08 20:31:18 +00:00 committed by Gerrit Code Review
commit 0794b31c62
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)