1.6.1 release

Change-Id: Iaa6cc5bb06e715aafb3ecab86ae7cde6ef30413d
This commit is contained in:
Tim Burke 2019-05-23 16:03:58 -07:00
parent 7f7edb26bb
commit 917859e239
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
Release 1.6.1
-------------
. Fixed CRC validation of little-endian fragments on big-endian
. Fixed compile warning about unaligned pointers
Release 1.6.0
-------------

View File

@ -27,7 +27,7 @@
#define _MAJOR 1
#define _MINOR 6
#define _REV 0
#define _REV 1
#define _VERSION(x, y, z) ((x << 16) | (y << 8) | (z))
#define LIBERASURECODE_VERSION _VERSION(_MAJOR, _MINOR, _REV)