Skip to content

Commit

Permalink
Getting ready for release 2.13.2
Browse files Browse the repository at this point in the history
  • Loading branch information
FrancescAlted committed Feb 7, 2024
1 parent e0918a1 commit ed9002c
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
8 changes: 6 additions & 2 deletions ANNOUNCE.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
# Announcing C-Blosc2 2.13.1
# Announcing C-Blosc2 2.13.2
A fast, compressed and persistent binary data store library for C.

## What is new?

This is a patch release for fixing a bug regarding the included files in `b2nd.h`.
This is a patch release for improving of SSSE3 detection on Visual Studio.
Also, documentation for the globally registered filters and codecs has been
added:
https://www.blosc.org/c-blosc2/reference/utility_variables.html#codes-for-filters
https://www.blosc.org/c-blosc2/reference/utility_variables.html#compressor-codecs

For more info, please see the release notes in:

Expand Down
7 changes: 6 additions & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ Release notes for C-Blosc2
Changes from 2.13.1 to 2.13.2
=============================

#XXX version-specific blurb XXX#
* Better checking for `SSSE3` availability in Visual Studio. Probably fixes #546 too.
Thanks to @t20100 (Thomas Vincent) for the PR (#586).

* Documented the globally registered filters and codecs. See:
https://www.blosc.org/c-blosc2/reference/utility_variables.html#codes-for-filters
https://www.blosc.org/c-blosc2/reference/utility_variables.html#compressor-codecs


Changes from 2.13.0 to 2.13.1
Expand Down
4 changes: 2 additions & 2 deletions include/blosc2.h
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ extern "C" {
#define BLOSC2_VERSION_MINOR 13 /* for minor interface/format changes */
#define BLOSC2_VERSION_RELEASE 2 /* for tweaks, bug-fixes, or development */

#define BLOSC2_VERSION_STRING "2.13.2.dev" /* string version. Sync with above! */
#define BLOSC2_VERSION_DATE "$Date:: 2023-01-25 #$" /* date version */
#define BLOSC2_VERSION_STRING "2.13.2" /* string version. Sync with above! */
#define BLOSC2_VERSION_DATE "$Date:: 2023-02-07 #$" /* date version */


/* The maximum number of dimensions for Blosc2 NDim arrays */
Expand Down

0 comments on commit ed9002c

Please sign in to comment.