summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYann Collet <cyan@fb.com>2019-04-19 18:54:01 (GMT)
committerYann Collet <cyan@fb.com>2019-04-19 18:59:49 (GMT)
commit7a4e3b1fac5cd9d4ec7c8d0091329ba107ec2131 (patch)
treecdb8f8a611faeb00f8ea3af92a096aa4c7c6941f
parent40e82df003ee49e08b9128acbd368b26b051191e (diff)
downloadlz4-7a4e3b1fac5cd9d4ec7c8d0091329ba107ec2131.zip
lz4-7a4e3b1fac5cd9d4ec7c8d0091329ba107ec2131.tar.gz
lz4-7a4e3b1fac5cd9d4ec7c8d0091329ba107ec2131.tar.bz2
bumped version number
to v1.9.1
-rw-r--r--NEWS5
-rw-r--r--doc/lz4_manual.html4
-rw-r--r--doc/lz4frame_manual.html4
-rw-r--r--lib/lz4.h2
4 files changed, 10 insertions, 5 deletions
diff --git a/NEWS b/NEWS
index 2d85607..7722d73 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,8 @@
+v1.9.1
+fix : decompression functions were reading beyond input size (introduced in v1.9.0, reported by @ppodolsky and @danlark1)
+api : fix : lz4frame initializers compatibility with c++, reported by @degski
+build: AIX, by Norman Green
+
v1.9.0
perf: large decompression speed improvement on x86/x64 (up to +20%) by @djwatson
api : changed : _destSize() compression variants are promoted to stable API
diff --git a/doc/lz4_manual.html b/doc/lz4_manual.html
index ee43b8a..3a9e0db 100644
--- a/doc/lz4_manual.html
+++ b/doc/lz4_manual.html
@@ -1,10 +1,10 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-<title>1.9.0 Manual</title>
+<title>1.9.1 Manual</title>
</head>
<body>
-<h1>1.9.0 Manual</h1>
+<h1>1.9.1 Manual</h1>
<hr>
<a name="Contents"></a><h2>Contents</h2>
<ol>
diff --git a/doc/lz4frame_manual.html b/doc/lz4frame_manual.html
index 914405f..2cf4f03 100644
--- a/doc/lz4frame_manual.html
+++ b/doc/lz4frame_manual.html
@@ -1,10 +1,10 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-<title>1.9.0 Manual</title>
+<title>1.9.1 Manual</title>
</head>
<body>
-<h1>1.9.0 Manual</h1>
+<h1>1.9.1 Manual</h1>
<hr>
<a name="Contents"></a><h2>Contents</h2>
<ol>
diff --git a/lib/lz4.h b/lib/lz4.h
index 737a0c7..a9c932c 100644
--- a/lib/lz4.h
+++ b/lib/lz4.h
@@ -97,7 +97,7 @@ extern "C" {
/*------ Version ------*/
#define LZ4_VERSION_MAJOR 1 /* for breaking interface changes */
#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_RELEASE 1 /* for tweaks, bug-fixes, or development */
#define LZ4_VERSION_NUMBER (LZ4_VERSION_MAJOR *100*100 + LZ4_VERSION_MINOR *100 + LZ4_VERSION_RELEASE)