Release 1.6.3

Change-Id: I7214aeecc3c568d7b0be5db441d62ca7901ec855
This commit is contained in:
Tim Burke 2022-04-06 09:10:32 -07:00 committed by Tim Burke
parent 078906d03e
commit f592409bcc
2 changed files with 11 additions and 2 deletions

View File

@ -1,3 +1,12 @@
Release 1.6.3
-------------
. Fixed an underflow error when using flat_xor_hd.
. Added a build option to allow a suffix to be added to library names passed
to dlopen(). To use, define LIBERASURECODE_SO_SUFFIX via CFLAGS when
building. This is useful when renaming libraries for PyEClib wheels, for
example, so they don't conflict with system packages that may be installed.
Release 1.6.2 Release 1.6.2
------------- -------------

View File

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