summaryrefslogtreecommitdiffstats
path: root/lib/lz4.h
diff options
context:
space:
mode:
authorYann Collet <yann.collet.73@gmail.com>2014-12-19 08:51:32 (GMT)
committerYann Collet <yann.collet.73@gmail.com>2014-12-19 08:51:32 (GMT)
commite25b51de7b51101e04ceea194dd557fcc23c03ca (patch)
treee6b6f4e9d0363f2ac6b9fd8e6563b068bb2fa3f7 /lib/lz4.h
parenta5358e602a526b844d6872c0b46087044651feb3 (diff)
parentf68eead36c0eb8f6f4e5c912dfe204c52bb7b7c5 (diff)
downloadlz4-e25b51de7b51101e04ceea194dd557fcc23c03ca.zip
lz4-e25b51de7b51101e04ceea194dd557fcc23c03ca.tar.gz
lz4-e25b51de7b51101e04ceea194dd557fcc23c03ca.tar.bz2
Merge pull request #47 from Cyan4973/devr127r126
Dev
Diffstat (limited to 'lib/lz4.h')
-rw-r--r--lib/lz4.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/lz4.h b/lib/lz4.h
index 7392320..7778caa 100644
--- a/lib/lz4.h
+++ b/lib/lz4.h
@@ -46,9 +46,9 @@ 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 1 /* for tweaks, bug-fixes, or development */
+#define LZ4_VERSION_MAJOR 1 /* for breaking interface changes */
+#define LZ4_VERSION_MINOR 5 /* 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);