Release 1.0.9

This commit is contained in:
Tushar Gohad 2015-09-06 06:25:41 +00:00
parent c9ce822825
commit 0c703b047a
5 changed files with 14 additions and 7 deletions

View File

@ -1,4 +1,11 @@
Release 1.0.8
Release 1.0.9
-------------
. Minor bugfixes including removing offending MAJOR/MINOR version macros
. Enforce upper limit 32 on the number of erasure coding fragments
(#data + #chunks) < 32
Release 1.0.8
-------------
. Introduce 'liberasurecode_rs_vand', a native, software-based Reed-Soloman

View File

@ -10,7 +10,7 @@ Highlights
* Unified Erasure Coding interface for common storage workloads.
* Pluggable Erasure Code backends - As of v1.0.8, liberasurecode supports the following backends:
* Pluggable Erasure Code backends - As of v1.0.9, 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.8)
AC_INIT(liberasurecode,1.0.9)
AC_GNU_SOURCE
AC_PREREQ([2.61])

View File

@ -25,9 +25,9 @@
#ifndef _ERASURECODE_VERSION_H_
#define _ERASURECODE_VERSION_H_
#define _MAJOR 0
#define _MINOR 9
#define _REV 10
#define _MAJOR 1
#define _MINOR 0
#define _REV 9
#define _VERSION(x, y, z) ((x << 16) | (y << 8) | (z))
#define LIBERASURECODE_VERSION _VERSION(_MAJOR, _MINOR, _REV)

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:8:0
liberasurecode_la_LDFLAGS = -rpath '$(libdir)' -version-info 1:9:0
MOSTLYCLEANFILES = *.gcda *.gcno *.gcov utils/chksum/*.gcda utils/chksum/*.gcno utils/chksum/*.gcov \
backends/null/*.gcda backends/null/*.gcno backends/null/*.gcov \