Release 1.1.0

This commit is contained in:
Tushar Gohad 2015-10-20 21:58:41 +00:00
parent 04dfa2124b
commit 58b7a54d35
5 changed files with 15 additions and 3 deletions

View File

@ -9,6 +9,7 @@ Original Authors
Contributors
----------------
* Pete Zaitcev
* Kota Tsuyuzaki
* Ryuta Kon

View File

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

View File

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

View File

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

View File

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