From 1649e4425983583eb266266190fa1ac4e980cea5 Mon Sep 17 00:00:00 2001 From: Francesc Alted Date: Tue, 5 Jul 2022 11:10:54 +0200 Subject: [PATCH] Getting ready for release 2.2.0 --- RELEASING.rst | 2 +- include/blosc2.h | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/RELEASING.rst b/RELEASING.rst index 005f76991..6da9e67ca 100644 --- a/RELEASING.rst +++ b/RELEASING.rst @@ -33,7 +33,7 @@ version:: $ cd ../compat $ export LD_LIBRARY_PATH=../build/blosc - $ gcc -o filegen filegen.c -L$LD_LIBRARY_PATH -lblosc2 -I../blosc + $ gcc -o filegen filegen.c -L$LD_LIBRARY_PATH -lblosc2 -I../include $ ./filegen compress lz4 blosc-lz4-1.y.z.cdata In order to make sure that we are not breaking forward compatibility, diff --git a/include/blosc2.h b/include/blosc2.h index 6105a1677..5381896a8 100644 --- a/include/blosc2.h +++ b/include/blosc2.h @@ -51,11 +51,11 @@ extern "C" { /* Version numbers */ #define BLOSC_VERSION_MAJOR 2 /* for major interface/format changes */ -#define BLOSC_VERSION_MINOR 1 /* for minor interface/format changes */ -#define BLOSC_VERSION_RELEASE 2 /* for tweaks, bug-fixes, or development */ +#define BLOSC_VERSION_MINOR 2 /* for minor interface/format changes */ +#define BLOSC_VERSION_RELEASE 0 /* for tweaks, bug-fixes, or development */ -#define BLOSC_VERSION_STRING "2.1.2.dev" /* string version. Sync with above! */ -#define BLOSC_VERSION_DATE "$Date:: 2022-05-07 #$" /* date version */ +#define BLOSC_VERSION_STRING "2.2.0" /* string version. Sync with above! */ +#define BLOSC_VERSION_DATE "$Date:: 2022-07-05 #$" /* date version */ /* The maximum number of dimensions for caterva arrays */