Skip to content

Commit

Permalink
Merge pull request #2987 from felixhandte/prepare-v1.5.2
Browse files Browse the repository at this point in the history
Prepare v1.5.2
  • Loading branch information
felixhandte authored Jan 11, 2022
2 parents e113c0c + 144879a commit f4a552a
Show file tree
Hide file tree
Showing 6 changed files with 231 additions and 56 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
v1.5.2 (Jan, 2022)
perf: Regain Minimal memset()-ing During Reuse of Compression Contexts (@Cyan4973, #2969)
build: Build Zstd with `noexecstack` on All Architectures (@felixhandte, #2964)
doc: Clarify Licensing (@terrelln, #2981)

v1.5.1 (Dec, 2021)
perf: rebalanced compression levels, to better match the intended speed/level curve, by @senhuang42
perf: faster huffman decoder, using x64 assembly, by @terrelln
Expand Down
4 changes: 2 additions & 2 deletions doc/zstd_manual.html
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>zstd 1.5.1 Manual</title>
<title>zstd 1.5.2 Manual</title>
</head>
<body>
<h1>zstd 1.5.1 Manual</h1>
<h1>zstd 1.5.2 Manual</h1>
<hr>
<a name="Contents"></a><h2>Contents</h2>
<ol>
Expand Down
2 changes: 1 addition & 1 deletion lib/zstd.h
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ extern "C" {
/*------ Version ------*/
#define ZSTD_VERSION_MAJOR 1
#define ZSTD_VERSION_MINOR 5
#define ZSTD_VERSION_RELEASE 1
#define ZSTD_VERSION_RELEASE 2
#define ZSTD_VERSION_NUMBER (ZSTD_VERSION_MAJOR *100*100 + ZSTD_VERSION_MINOR *100 + ZSTD_VERSION_RELEASE)

/*! ZSTD_versionNumber() :
Expand Down
Loading

0 comments on commit f4a552a

Please sign in to comment.