summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorYann Collet <Cyan4973@users.noreply.github.com>2018-09-06 19:43:29 (GMT)
committerGitHub <noreply@github.com>2018-09-06 19:43:29 (GMT)
commit0f08c22c318356b8b9217376c3d4161c92e6ce1a (patch)
tree9e0f417c6b0f708905d1c873f4907f2613377016 /lib
parentcd3945f532919a4b59994e742552798c6b21005a (diff)
parent0fea528e3a70f8578ca6e7f15d922dab8aa9ff25 (diff)
downloadlz4-0f08c22c318356b8b9217376c3d4161c92e6ce1a.zip
lz4-0f08c22c318356b8b9217376c3d4161c92e6ce1a.tar.gz
lz4-0f08c22c318356b8b9217376c3d4161c92e6ce1a.tar.bz2
Merge pull request #563 from lz4/docDict
updated documentation for dictionary compression
Diffstat (limited to 'lib')
-rw-r--r--lib/lz4.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/lz4.h b/lib/lz4.h
index a0eddce..491b67a 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 2 /* for tweaks, bug-fixes, or development */
+#define LZ4_VERSION_RELEASE 3 /* for tweaks, bug-fixes, or development */
#define LZ4_VERSION_NUMBER (LZ4_VERSION_MAJOR *100*100 + LZ4_VERSION_MINOR *100 + LZ4_VERSION_RELEASE)