Skip to content

Commit ed9002c

Browse files
committed
Getting ready for release 2.13.2
1 parent e0918a1 commit ed9002c

File tree

3 files changed

+14
-5
lines changed

3 files changed

+14
-5
lines changed

ANNOUNCE.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
1-
# Announcing C-Blosc2 2.13.1
1+
# Announcing C-Blosc2 2.13.2
22
A fast, compressed and persistent binary data store library for C.
33

44
## What is new?
55

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

812
For more info, please see the release notes in:
913

RELEASE_NOTES.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@ Release notes for C-Blosc2
44
Changes from 2.13.1 to 2.13.2
55
=============================
66

7-
#XXX version-specific blurb XXX#
7+
* Better checking for `SSSE3` availability in Visual Studio. Probably fixes #546 too.
8+
Thanks to @t20100 (Thomas Vincent) for the PR (#586).
9+
10+
* Documented the globally registered filters and codecs. See:
11+
https://www.blosc.org/c-blosc2/reference/utility_variables.html#codes-for-filters
12+
https://www.blosc.org/c-blosc2/reference/utility_variables.html#compressor-codecs
813

914

1015
Changes from 2.13.0 to 2.13.1

include/blosc2.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@ extern "C" {
8585
#define BLOSC2_VERSION_MINOR 13 /* for minor interface/format changes */
8686
#define BLOSC2_VERSION_RELEASE 2 /* for tweaks, bug-fixes, or development */
8787

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

9191

9292
/* The maximum number of dimensions for Blosc2 NDim arrays */

0 commit comments

Comments
 (0)