Skip to content

Commit

Permalink
Getting ready for 1.11.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
FrancescAlted committed Jan 27, 2017
1 parent f6615f8 commit 54dad47
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 19 deletions.
21 changes: 6 additions & 15 deletions 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:

Expand Down
2 changes: 1 addition & 1 deletion RELEASE_NOTES.rst
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions blosc/blosc.h
Expand Up @@ -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 */

Expand Down

0 comments on commit 54dad47

Please sign in to comment.