summaryrefslogtreecommitdiffstats
path: root/lz4.h
diff options
context:
space:
mode:
authorYann Collet <yann.collet.73@gmail.com>2014-09-10 12:00:39 (GMT)
committerYann Collet <yann.collet.73@gmail.com>2014-09-10 12:00:39 (GMT)
commit0400451ac22b9578274a3971ed65e6c70cd7fdb9 (patch)
tree77d33900b431be2047db09d272e2914a8c462453 /lz4.h
parenteac83cd850d2f69a82ef9af344be9b7f3925681a (diff)
downloadlz4-0400451ac22b9578274a3971ed65e6c70cd7fdb9.zip
lz4-0400451ac22b9578274a3971ed65e6c70cd7fdb9.tar.gz
lz4-0400451ac22b9578274a3971ed65e6c70cd7fdb9.tar.bz2
Fix : streaming mode bug (re-using context & buffers)
Diffstat (limited to 'lz4.h')
-rw-r--r--lz4.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lz4.h b/lz4.h
index 9e192e6..44ada14 100644
--- a/lz4.h
+++ b/lz4.h
@@ -48,7 +48,7 @@ extern "C" {
**************************************/
#define LZ4_VERSION_MAJOR 1 /* for major interface/format changes */
#define LZ4_VERSION_MINOR 3 /* for minor interface/format changes */
-#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);