Skip to content

Commit 1ab7273

Browse files
committed
Getting ready for release 2.3.1
1 parent 42431f6 commit 1ab7273

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

ANNOUNCE.md

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
1-
# Announcing C-Blosc2 2.3.0
1+
# Announcing C-Blosc2 2.3.1
22
A fast, compressed and persistent binary data store library for C.
33

44
## What is new?
55

66
The Blosc development team is happy to announce a new release of C-Blosc2.
7-
In order to allow to compile an app with both C-Blosc and C-Blosc2 libraries,
8-
a new API has been created for the overlapping symbols and function names.
9-
Also, we have fixed the conversion between super-chunks and frames.
7+
This is a maintenance release, fixing some issues introduced in previous one.
8+
Also, negative values for BLOSC_TRUNC_PREC filter are supported now.
109

1110
C-Blosc2 should be backward compatible with C-Blosc, so you can start using
1211
it right away and increasingly start to use its new functionality, like the

RELEASE_NOTES.md

+4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ Changes from 2.3.0 to 2.3.1
66

77
* Support for negative values for BLOSC_TRUNC_PREC filter. Negatives values mean reduce mantissa precision bits, whereas positive values mean keep precision bits.
88

9+
* Re-add the check for small buffers and a new test (see https://github.com/Blosc/python-blosc2/issues/46).
10+
11+
* Make `static` a couple of funcs to avoid collisions. This can be useful in case someone tries to compile both C-Blosc and C-Blosc2 in the same name space (however, don't do that unless you know what you are doing; better use dynamic libraries which allow for a much better name space separation).
12+
913

1014
Changes from 2.2.0 to 2.3.0
1115
===========================

include/blosc2.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,8 @@ extern "C" {
9393
#define BLOSC2_VERSION_MINOR 3 /* for minor interface/format changes */
9494
#define BLOSC2_VERSION_RELEASE 1 /* for tweaks, bug-fixes, or development */
9595

96-
#define BLOSC2_VERSION_STRING "2.3.1.dev" /* string version. Sync with above! */
97-
#define BLOSC2_VERSION_DATE "$Date:: 2022-08-18 #$" /* date version */
96+
#define BLOSC2_VERSION_STRING "2.3.1" /* string version. Sync with above! */
97+
#define BLOSC2_VERSION_DATE "$Date:: 2022-08-24 #$" /* date version */
9898

9999

100100
/* The maximum number of dimensions for caterva arrays */

0 commit comments

Comments
 (0)