Skip to content

Commit

Permalink
Getting ready for 1.21.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
FrancescAlted committed Dec 7, 2022
1 parent d544fd8 commit bdbb700
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 11 deletions.
11 changes: 5 additions & 6 deletions ANNOUNCE.rst
Original file line number Diff line number Diff line change
@@ -1,19 +1,18 @@
===============================================================
Announcing C-Blosc 1.21.1
Announcing C-Blosc 1.21.2
A blocking, shuffling and lossless compression library for C
===============================================================

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

This is a maintenance release. Fix pthread flag when linking on ppc64le.
Vendored BloscLZ, Zlib and Zstd codecs have been updated to their latest
versions too; this can bring important performance improvements, so if
speed is a priority to you, an upgrade is recommended.
This is a maintenance release. Upgrade internal-complib zstd from
1.5.0 to 1.5.2 and many small code improvements, improved consistency
and typo fixes. An upgrade is recommended.

For more info, please see the release notes in:

https://github.com/Blosc/c-blosc/blob/master/RELEASE_NOTES.rst
https://github.com/Blosc/c-blosc/blob/main/RELEASE_NOTES.rst


What is it?
Expand Down
13 changes: 12 additions & 1 deletion RELEASE_NOTES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,18 @@
Changes from 1.21.1 to 1.21.2
=============================

#XXX version-specific blurb XXX#
* Add support for SHUFFLE_AVX2_ENABLED and SHUFFLE_SSE2_ENABLED
even if AVX2 or SSE2 is not available. See PR #347. Thanks to
Thomas VINCENT.

* Upgrade internal-complib zstd from 1.5.0 to 1.5.2. Thanks to
Mark Kittisopikul.

* Many small code improvements, improved consistency and typo fixes.
Thanks to Dimitri Papadopoulos Orfanos.

* New HIDE_SYMBOLS CMake option to control the symbols exposure.
Default is ON. Thanks to Mariusz Zaborski.


Changes from 1.21.0 to 1.21.1
Expand Down
4 changes: 2 additions & 2 deletions RELEASING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ Releasing Blosc
Preliminaries
-------------

- Switch to master branch::
- Switch to main branch::

$ git switch master
$ git switch main

- Make sure that ``RELEASE_NOTES.rst`` and ``ANNOUNCE.rst`` are up to
date with the latest news in the release.
Expand Down
4 changes: 2 additions & 2 deletions blosc/blosc.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ extern "C" {
#define BLOSC_VERSION_MINOR 21 /* for minor interface/format changes */
#define BLOSC_VERSION_RELEASE 2 /* for tweaks, bug-fixes, or development */

#define BLOSC_VERSION_STRING "1.21.2.dev" /* string version. Sync with above! */
#define BLOSC_VERSION_STRING "1.21.2" /* string version. Sync with above! */
#define BLOSC_VERSION_REVISION "$Rev$" /* revision version */
#define BLOSC_VERSION_DATE "$Date:: 2021-10-06 #$" /* date version */
#define BLOSC_VERSION_DATE "$Date:: 2022-12-07 #$" /* date version */

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

Expand Down

0 comments on commit bdbb700

Please sign in to comment.