summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--AUTHORS1
-rw-r--r--ChangeLog8
-rw-r--r--include/erasurecode/erasurecode_version.h4
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)