From 58b7a54d35c058b5b1266f9e5167be47f07a12c6 Mon Sep 17 00:00:00 2001 From: Tushar Gohad Date: Tue, 20 Oct 2015 21:58:41 +0000 Subject: Release 1.1.0 --- AUTHORS | 1 + ChangeLog | 11 +++++++++++ README.md | 2 +- configure.ac | 2 +- src/Makefile.am | 2 +- 5 files changed, 15 insertions(+), 3 deletions(-) diff --git a/AUTHORS b/AUTHORS index 031a748..ab73483 100644 --- a/AUTHORS +++ b/AUTHORS @@ -9,6 +9,7 @@ Original Authors Contributors ---------------- + * Pete Zaitcev * Kota Tsuyuzaki * Ryuta Kon diff --git a/ChangeLog b/ChangeLog index 5df17eb..77972ec 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,14 @@ +Release 1.1.0 +------------- + + . Fix for a segfault related to Jerasure uninit() function that is being + looked up by the jerasure EC backend (Issue#19) + . Split helpers.h include for backward compatibility + . Create header symlinks in std locations for backward compat (<= 1.0.8) + . Eliminate erasurecode_stdinc.h dependency on log.h + . Move fragment_header defn to main erasurecode header + . doxygen documentation fixes + Release 1.0.9 ------------- diff --git a/README.md b/README.md index d7888b7..ae33f3f 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ Highlights * Unified Erasure Coding interface for common storage workloads. - * Pluggable Erasure Code backends - As of v1.0.9, liberasurecode supports the following backends: + * Pluggable Erasure Code backends - As of v1.1.0, liberasurecode supports the following backends: - Native, software-only Erasure Coding implementation that supports a Reed-Solomon backend - 'Jerasure' - Erasure Coding library that supports Reed-Solomon, Cauchy backends [1] diff --git a/configure.ac b/configure.ac index 9b10284..a3d62b3 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ ################################################################################ # Standard Stuff ################################################################################ -AC_INIT(liberasurecode,1.0.9) +AC_INIT(liberasurecode,1.1.0) AC_GNU_SOURCE AC_PREREQ([2.61]) diff --git a/src/Makefile.am b/src/Makefile.am index 42cafa4..5a9f33b 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -32,7 +32,7 @@ liberasurecode_la_LIBADD = \ builtin/rs_vand/liberasurecode_rs_vand.la -lpthread -lm @GCOV_LDFLAGS@ # Version format (C - A).(A).(R) for C:R:A input -liberasurecode_la_LDFLAGS = -rpath '$(libdir)' -version-info 1:9:0 +liberasurecode_la_LDFLAGS = -rpath '$(libdir)' -version-info 2:0:1 MOSTLYCLEANFILES = *.gcda *.gcno *.gcov utils/chksum/*.gcda utils/chksum/*.gcno utils/chksum/*.gcov \ backends/null/*.gcda backends/null/*.gcno backends/null/*.gcov \ -- cgit v1.2.1