From 34b273ee60289aaddc1dfc77e790b01263ae3005 Mon Sep 17 00:00:00 2001 From: Marta Iborra Date: Wed, 13 Sep 2023 08:46:01 +0200 Subject: [PATCH] Getting ready for release 2.10.3 --- ANNOUNCE.md | 7 ++++--- RELEASE_NOTES.md | 10 +++++++++- include/blosc2.h | 4 ++-- 3 files changed, 15 insertions(+), 6 deletions(-) diff --git a/ANNOUNCE.md b/ANNOUNCE.md index 3947a853..3a678dff 100644 --- a/ANNOUNCE.md +++ b/ANNOUNCE.md @@ -3,9 +3,10 @@ A fast, compressed and persistent binary data store library for C. ## What is new? -This is a maintenance release with also several improvements for helping -integration of C-Blosc2 in other projects (thanks to Alex Huebl). Also, -some fixes for MinGW platform are in (thanks to Biswapriyo Nath). +This is a maintenance release with also several improvements like the registration of +the dynamically loaded codec blosc2_openhtj2k. See https://github.com/Blosc/blosc2_openhtj2k +for more info on how to use it. Also, +the `BLOSC_INFO` macro has been added for details on compression params. For more info, please see the release notes in: diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 8a63241b..d7dce9d7 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -4,7 +4,15 @@ Release notes for C-Blosc2 Changes from 2.10.2 to 2.10.3 ============================= -#XXX version-specific blurb XXX# +* Globally registered new codec `openhtj2k`. This will be loaded dynamically. See PR #557. + +* Added a `BLOSC_INFO` macro for details on compression params. + +* Added `get_blocksize.c` example on automatic blocksizes. + +* Warning fixes. + +* Fixes for mingw. Changes from 2.10.1 to 2.10.2 diff --git a/include/blosc2.h b/include/blosc2.h index 8b5b2239..24161ef4 100644 --- a/include/blosc2.h +++ b/include/blosc2.h @@ -85,8 +85,8 @@ extern "C" { #define BLOSC2_VERSION_MINOR 10 /* for minor interface/format changes */ #define BLOSC2_VERSION_RELEASE 3 /* for tweaks, bug-fixes, or development */ -#define BLOSC2_VERSION_STRING "2.10.3.dev" /* string version. Sync with above! */ -#define BLOSC2_VERSION_DATE "$Date:: 2023-08-19 #$" /* date version */ +#define BLOSC2_VERSION_STRING "2.10.3" /* string version. Sync with above! */ +#define BLOSC2_VERSION_DATE "$Date:: 2023-09-13 #$" /* date version */ /* The maximum number of dimensions for Blosc2 NDim arrays */