From 50f01d881d0bfe0accd8f7c70937be99c403b6ef Mon Sep 17 00:00:00 2001 From: Yann Collet Date: Wed, 3 Apr 2019 14:27:21 -0700 Subject: fixed doc and bumped version number fo v1.9.0 --- doc/lz4_manual.html | 21 ++++++++++++--------- lib/lz4.h | 17 ++++++++++------- 2 files changed, 22 insertions(+), 16 deletions(-) diff --git a/doc/lz4_manual.html b/doc/lz4_manual.html index f98e8bb..f25aa79 100644 --- a/doc/lz4_manual.html +++ b/doc/lz4_manual.html @@ -1,10 +1,10 @@ -1.8.3 Manual +1.9.0 Manual -

1.8.3 Manual

+

1.9.0 Manual


Contents

    @@ -15,7 +15,7 @@
  1. Advanced Functions
  2. Streaming Compression Functions
  3. Streaming Decompression Functions
  4. -
  5. Symbols declared in this section must be considered unstable. Their
  6. +
  7. Experimental section
  8. PRIVATE DEFINITIONS
  9. Obsolete Functions
@@ -295,16 +295,19 @@ int LZ4_decompress_fast_usingDict (const char* src, char* dst, int originalSize,


-

Symbols declared in this section must be considered unstable. Their

 signatures or semantics may change, or they may be removed altogether in the
+

Experimental section

+ Symbols declared in this section must be considered unstable. Their
+ signatures or semantics may change, or they may be removed altogether in the
  future. They are therefore only safe to depend on when the caller is
  statically linked against the library.
 
- To protect against unsafe usage, not only are the declarations guarded, the
- definitions are hidden by default when building LZ4 as a shared/dynamic
- library.
+ To protect against unsafe usage, not only are the declarations guarded,
+ the definitions are hidden by default
+ when building LZ4 as a shared/dynamic library.
 
- In order to access these declarations, define LZ4_STATIC_LINKING_ONLY in
- your application before including LZ4's headers.
+ In order to access these declarations,
+ define LZ4_STATIC_LINKING_ONLY in your application
+ before including LZ4's headers.
 
  In order to make their implementations accessible dynamically, you must
  define LZ4_PUBLISH_STATIC_FUNCTIONS when building the LZ4 library.
diff --git a/lib/lz4.h b/lib/lz4.h
index c78f123..878aaf0 100644
--- a/lib/lz4.h
+++ b/lib/lz4.h
@@ -92,8 +92,8 @@ 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  3    /* for tweaks, bug-fixes, or development */
+#define LZ4_VERSION_MINOR    9    /* 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)
 
@@ -390,17 +390,20 @@ LZ4LIB_API int LZ4_decompress_fast_usingDict (const char* src, char* dst, int or
  ***************************************/
 
 /*-****************************************************************************
+ * Experimental section
+ *
  * Symbols declared in this section must be considered unstable. Their
  * signatures or semantics may change, or they may be removed altogether in the
  * future. They are therefore only safe to depend on when the caller is
  * statically linked against the library.
  *
- * To protect against unsafe usage, not only are the declarations guarded, the
- * definitions are hidden by default when building LZ4 as a shared/dynamic
- * library.
+ * To protect against unsafe usage, not only are the declarations guarded,
+ * the definitions are hidden by default
+ * when building LZ4 as a shared/dynamic library.
  *
- * In order to access these declarations, define LZ4_STATIC_LINKING_ONLY in
- * your application before including LZ4's headers.
+ * In order to access these declarations,
+ * define LZ4_STATIC_LINKING_ONLY in your application
+ * before including LZ4's headers.
  *
  * In order to make their implementations accessible dynamically, you must
  * define LZ4_PUBLISH_STATIC_FUNCTIONS when building the LZ4 library.
-- 
cgit v0.12