Skip to content

Commit

Permalink
Getting ready for 1.11.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
FrancescAlted committed Sep 2, 2016
1 parent 9d06255 commit 0017467
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 14 deletions.
22 changes: 13 additions & 9 deletions ANNOUNCE.rst
Original file line number Diff line number Diff line change
@@ -1,19 +1,23 @@
===============================================================
Announcing C-Blosc 1.10.2
Announcing C-Blosc 1.11.0
A blocking, shuffling and lossless compression library for C
===============================================================

What is new?
============

This is a maintenance release fixing compilation on platforms where
compilation with GCC does not default to -std=gnu99. Fixes #174.
Thanks to Matthew Brett for reporting.

Also, in 1.10.0 support for Zstd has been introduced for first time, and
so far the experience with it is really pleasant. As an example, see how
Blosc + Zstd can collaborate compressing images delivering pretty
impressive compression ratios and extremely fast decompression:
The Zstd internal codec has been updated to 1.0.0 and it is now meant to
be used in production! Also, the algorithm to compute the block size in
which the buffers are split has been improved for both HCR codecs (High
Compression Ratio codecs, i.e. LZ4HC, Zlib and Zstd) and LZ4, which
seems happy to compress larger blocks. This new algorithm enable larger
compression ratios as well as faster operation; it has been backported
from C-Blosc2 and it is meant for production too.

Also, since support for Zstd has been introduced the experience with it
has been really pleasant. As an example, see how Blosc + Zstd can
collaborate compressing images delivering pretty impressive compression
ratios and extremely fast decompression:

https://github.com/Cyan4973/zstd/issues/256

Expand Down
2 changes: 1 addition & 1 deletion RELEASE_NOTES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
:URL: http://www.blosc.org


Changes from 1.10.2 to 1.10.3
Changes from 1.10.2 to 1.11.0
=============================

- Internal Zstd codec upgraded to 1.0.0.
Expand Down
8 changes: 4 additions & 4 deletions blosc/blosc.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ extern "C" {

/* Version numbers */
#define BLOSC_VERSION_MAJOR 1 /* for major interface/format changes */
#define BLOSC_VERSION_MINOR 10 /* for minor interface/format changes */
#define BLOSC_VERSION_RELEASE 3 /* for tweaks, bug-fixes, or development */
#define BLOSC_VERSION_MINOR 11 /* for minor interface/format changes */
#define BLOSC_VERSION_RELEASE 0 /* for tweaks, bug-fixes, or development */

#define BLOSC_VERSION_STRING "1.10.3.dev" /* string version. Sync with above! */
#define BLOSC_VERSION_STRING "1.11.0" /* string version. Sync with above! */
#define BLOSC_VERSION_REVISION "$Rev$" /* revision version */
#define BLOSC_VERSION_DATE "$Date:: 2016-07-30 #$" /* date version */
#define BLOSC_VERSION_DATE "$Date:: 2016-09-02 #$" /* date version */

#define BLOSCLZ_VERSION_STRING "1.0.5" /* the internal compressor version */

Expand Down

0 comments on commit 0017467

Please sign in to comment.