summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorYann Collet <cyan@fb.com>2018-09-05 21:05:08 (GMT)
committerYann Collet <cyan@fb.com>2018-09-05 21:05:08 (GMT)
commit0fea528e3a70f8578ca6e7f15d922dab8aa9ff25 (patch)
tree75d8c00fc7fa2857a49d5d5c2466e33586ba7afc /lib
parentc4dbc37b3ce085a05441124fee4a8144dc149b05 (diff)
downloadlz4-0fea528e3a70f8578ca6e7f15d922dab8aa9ff25.zip
lz4-0fea528e3a70f8578ca6e7f15d922dab8aa9ff25.tar.gz
lz4-0fea528e3a70f8578ca6e7f15d922dab8aa9ff25.tar.bz2
updated documentation regarding dictionary compression
following suggestion from @stbrumme (#558) Also : bumped version number, regenerated man page and html doc
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)