Skip to content

Commit

Permalink
v0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
ebiggers committed Oct 16, 2016
1 parent b83957e commit b16dc97
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
11 changes: 11 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
Version 0.5:
The CRC-32 checksum algorithm has been optimized with carryless
multiplication instructions for x86_64 (PCLMUL). This speeds up gzip
compression and decompression.

Build fixes for certain platforms and compilers.

Added more test programs and scripts.

libdeflate is now entirely MIT-licensed.

Version 0.4:
The Adler-32 checksum algorithm has been optimized with vector
instructions for x86_64 (SSE2 and AVX2) and ARM (NEON). This speeds up
Expand Down
4 changes: 2 additions & 2 deletions libdeflate.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ extern "C" {
#endif

#define LIBDEFLATE_VERSION_MAJOR 0
#define LIBDEFLATE_VERSION_MINOR 4
#define LIBDEFLATE_VERSION_STRING "0.4"
#define LIBDEFLATE_VERSION_MINOR 5
#define LIBDEFLATE_VERSION_STRING "0.5"

#include <stddef.h>
#include <stdint.h>
Expand Down

0 comments on commit b16dc97

Please sign in to comment.