summaryrefslogtreecommitdiffstats
path: root/lib/lz4.h
diff options
context:
space:
mode:
authorYann Collet <yann.collet.73@gmail.com>2015-04-01 14:53:08 (GMT)
committerYann Collet <yann.collet.73@gmail.com>2015-04-01 14:53:08 (GMT)
commit28e237e954098c418f048a871aa53199d92314f4 (patch)
tree990e4712dc0b63ac1e9ae10d8b8b55235de533a4 /lib/lz4.h
parent89eee0d28b2b7c5954e1cb0dce60542e4c597130 (diff)
downloadlz4-28e237e954098c418f048a871aa53199d92314f4.zip
lz4-28e237e954098c418f048a871aa53199d92314f4.tar.gz
lz4-28e237e954098c418f048a871aa53199d92314f4.tar.bz2
simplified LZ4_compress_limitedOutput()
Diffstat (limited to 'lib/lz4.h')
-rw-r--r--lib/lz4.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/lz4.h b/lib/lz4.h
index 7072c37..92c8738 100644
--- a/lib/lz4.h
+++ b/lib/lz4.h
@@ -48,7 +48,7 @@ extern "C" {
* Version
**************************************/
#define LZ4_VERSION_MAJOR 1 /* for breaking interface changes */
-#define LZ4_VERSION_MINOR 6 /* for new (non-breaking) interface capabilities */
+#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_NUMBER (LZ4_VERSION_MAJOR *100*100 + LZ4_VERSION_MINOR *100 + LZ4_VERSION_RELEASE)
int LZ4_versionNumber (void);