From 54dad47d8dde43cea2263316be47d1602bec44da Mon Sep 17 00:00:00 2001 From: Francesc Alted Date: Fri, 27 Jan 2017 14:24:45 +0100 Subject: [PATCH] Getting ready for 1.11.2 release --- ANNOUNCE.rst | 21 ++++++--------------- RELEASE_NOTES.rst | 2 +- blosc/blosc.h | 6 +++--- 3 files changed, 10 insertions(+), 19 deletions(-) diff --git a/ANNOUNCE.rst b/ANNOUNCE.rst index 165ae9fb..e037a931 100644 --- a/ANNOUNCE.rst +++ b/ANNOUNCE.rst @@ -1,26 +1,17 @@ =============================================================== - Announcing C-Blosc 1.11.1 + Announcing C-Blosc 1.11.2 A blocking, shuffling and lossless compression library for C =============================================================== What is new? ============ -Fixed a bug introduced in 1.11.0 and discovered by pandas test suite. -This basically prevented to decompress buffers compressed with previous -versions of C-Blosc.See: -https://github.com/Blosc/python-blosc/issues/115 +Enabled use as a CMake subproject, exporting shared & static library targets +for super-projects to use. See PRs #178, #179 and #180. Thanks to Kevin +Murray. -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 - -There is also a blog about what you can expect of it in: - -http://blosc.org/blog/zstd-has-just-landed-in-blosc.html +Also, internal codecs have been updated. LZ4 and LZ4HC codecs to 1.7.5 and +Zstd to 1.1.2. For more info, please see the release notes in: diff --git a/RELEASE_NOTES.rst b/RELEASE_NOTES.rst index dd3acdbf..78db5388 100644 --- a/RELEASE_NOTES.rst +++ b/RELEASE_NOTES.rst @@ -7,7 +7,7 @@ :URL: http://www.blosc.org -Changes in master +Changes from 1.11.1 to 1.11.2 ============================= - Enabled use as a CMake subproject, exporting shared & static library targets diff --git a/blosc/blosc.h b/blosc/blosc.h index d27cd870..69faa327 100644 --- a/blosc/blosc.h +++ b/blosc/blosc.h @@ -19,11 +19,11 @@ extern "C" { /* Version numbers */ #define BLOSC_VERSION_MAJOR 1 /* for major interface/format changes */ #define BLOSC_VERSION_MINOR 11 /* for minor interface/format changes */ -#define BLOSC_VERSION_RELEASE 1 /* for tweaks, bug-fixes, or development */ +#define BLOSC_VERSION_RELEASE 2 /* for tweaks, bug-fixes, or development */ -#define BLOSC_VERSION_STRING "1.11.1" /* string version. Sync with above! */ +#define BLOSC_VERSION_STRING "1.11.2" /* string version. Sync with above! */ #define BLOSC_VERSION_REVISION "$Rev$" /* revision version */ -#define BLOSC_VERSION_DATE "$Date:: 2016-09-03 #$" /* date version */ +#define BLOSC_VERSION_DATE "$Date:: 2017-01-27 #$" /* date version */ #define BLOSCLZ_VERSION_STRING "1.0.5" /* the internal compressor version */