summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPo-Chuan Hsieh <sunpoet@sunpoet.net>2018-01-13 22:38:03 (GMT)
committerPo-Chuan Hsieh <sunpoet@sunpoet.net>2018-01-13 22:38:03 (GMT)
commit47bf1a9f010d548fa58c7716678e7a11b356b120 (patch)
treea3ab3ef5dc2b5e2896ca20726989877e3532af91
parentc423dc21bde53869739d85c08071803662278f5b (diff)
downloadlz4-47bf1a9f010d548fa58c7716678e7a11b356b120.zip
lz4-47bf1a9f010d548fa58c7716678e7a11b356b120.tar.gz
lz4-47bf1a9f010d548fa58c7716678e7a11b356b120.tar.bz2
Fix lz4 version
-rw-r--r--lib/lz4.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/lz4.h b/lib/lz4.h
index 3cf6c8d..a06b8a4 100644
--- a/lib/lz4.h
+++ b/lib/lz4.h
@@ -93,7 +93,7 @@ extern "C" {
/*------ Version ------*/
#define LZ4_VERSION_MAJOR 1 /* for breaking interface changes */
#define LZ4_VERSION_MINOR 8 /* 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)