diff options
author | Yann Collet <yann.collet.73@gmail.com> | 2015-07-16 08:38:10 (GMT) |
---|---|---|
committer | Yann Collet <yann.collet.73@gmail.com> | 2015-07-16 08:38:10 (GMT) |
commit | 00eedb37d102afe00e1c373448c114d2d5edd4b5 (patch) | |
tree | 2e7466d2fb964a0b6389300524a3e560977a5ffa /lib/lz4.h | |
parent | 3e579afa6d721f4086e11dd8b9db8f8601c0f6d9 (diff) | |
download | lz4-00eedb37d102afe00e1c373448c114d2d5edd4b5.zip lz4-00eedb37d102afe00e1c373448c114d2d5edd4b5.tar.gz lz4-00eedb37d102afe00e1c373448c114d2d5edd4b5.tar.bz2 |
minor refactor
Diffstat (limited to 'lib/lz4.h')
-rw-r--r-- | lib/lz4.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -49,7 +49,7 @@ extern "C" { **************************************/ #define LZ4_VERSION_MAJOR 1 /* for breaking interface changes */ #define LZ4_VERSION_MINOR 7 /* for new (non-breaking) interface capabilities */ -#define LZ4_VERSION_RELEASE 1 /* for tweaks, bug-fixes, or development */ +#define LZ4_VERSION_RELEASE 2 /* for tweaks, bug-fixes, or development */ #define LZ4_VERSION_NUMBER (LZ4_VERSION_MAJOR *100*100 + LZ4_VERSION_MINOR *100 + LZ4_VERSION_RELEASE) int LZ4_versionNumber (void); |