summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorYann Collet <yann.collet.73@gmail.com>2015-03-19 00:05:59 (GMT)
committerYann Collet <yann.collet.73@gmail.com>2015-03-19 00:05:59 (GMT)
commit86715b2541fc1fa70d66c0b6aa723685a61e6f56 (patch)
tree31dfa883f8618d308edb9b59a0b998b57c33a39b /lib
parent7ee725645b58c201f11443d70210c2f986371b59 (diff)
downloadlz4-86715b2541fc1fa70d66c0b6aa723685a61e6f56.zip
lz4-86715b2541fc1fa70d66c0b6aa723685a61e6f56.tar.gz
lz4-86715b2541fc1fa70d66c0b6aa723685a61e6f56.tar.bz2
Some more tests related to frame content size
Diffstat (limited to 'lib')
-rw-r--r--lib/lz4.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/lz4.h b/lib/lz4.h
index db55b11..bb823d8 100644
--- a/lib/lz4.h
+++ b/lib/lz4.h
@@ -48,8 +48,8 @@ extern "C" {
* Version
**************************************/
#define LZ4_VERSION_MAJOR 1 /* for breaking interface changes */
-#define LZ4_VERSION_MINOR 5 /* for new (non-breaking) interface capabilities */
-#define LZ4_VERSION_RELEASE 1 /* for tweaks, bug-fixes, or development */
+#define LZ4_VERSION_MINOR 6 /* 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);