summaryrefslogtreecommitdiffstats
path: root/lz4.h
diff options
context:
space:
mode:
authorYann Collet <yann.collet.73@gmail.com>2014-10-27 23:39:06 (GMT)
committerYann Collet <yann.collet.73@gmail.com>2014-10-27 23:39:06 (GMT)
commit7a677a77a683a6716307034a176228075ce9fea5 (patch)
treed9359141f856f9612ac1cf201642313e8835d91e /lz4.h
parent508855c48826aa0544a907f02b52515aabba5e16 (diff)
downloadlz4-7a677a77a683a6716307034a176228075ce9fea5.zip
lz4-7a677a77a683a6716307034a176228075ce9fea5.tar.gz
lz4-7a677a77a683a6716307034a176228075ce9fea5.tar.bz2
LZ4 HC streaming integrated within lz4frame
Diffstat (limited to 'lz4.h')
-rw-r--r--lz4.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lz4.h b/lz4.h
index eb96067..0a8a772 100644
--- a/lz4.h
+++ b/lz4.h
@@ -47,8 +47,8 @@ extern "C" {
Version
**************************************/
#define LZ4_VERSION_MAJOR 1 /* for major interface/format changes */
-#define LZ4_VERSION_MINOR 4 /* for minor interface/format changes */
-#define LZ4_VERSION_RELEASE 0 /* for tweaks, bug-fixes, or development */
+#define LZ4_VERSION_MINOR 3 /* for minor interface/format changes */
+#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);