diff options
author | Yann Collet <yann.collet.73@gmail.com> | 2015-06-27 20:43:28 (GMT) |
---|---|---|
committer | Yann Collet <yann.collet.73@gmail.com> | 2015-06-27 20:43:28 (GMT) |
commit | 192ee724a3478bb7d4aaebccbc1d18f9692fbb1a (patch) | |
tree | f3d83d2e26ae09f568cea8113ffa0be152f097d1 /lib/lz4.h | |
parent | c04df7e1b5fb1e4ffa796d2b3d2dea208f7116da (diff) | |
download | lz4-192ee724a3478bb7d4aaebccbc1d18f9692fbb1a.zip lz4-192ee724a3478bb7d4aaebccbc1d18f9692fbb1a.tar.gz lz4-192ee724a3478bb7d4aaebccbc1d18f9692fbb1a.tar.bz2 |
Added namespace ability to xxhash
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 0 /* for tweaks, bug-fixes, or development */ +#define LZ4_VERSION_RELEASE 1 /* 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); |