Fix minor rev

This commit is contained in:
Tushar Gohad 2015-12-10 04:13:08 -07:00
parent 92bad94311
commit 8788462b7e
2 changed files with 4 additions and 4 deletions

View File

@ -10,7 +10,7 @@ Highlights
* Unified Erasure Coding interface for common storage workloads.
* Pluggable Erasure Code backends - As of v1.1.0, liberasurecode supports the following backends:
* Pluggable Erasure Code backends - As of v1.1.x, 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

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