Skip to content

Commit

Permalink
Getting ready for release 2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
FrancescAlted committed Jul 5, 2022
1 parent 0226e7b commit 1649e44
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion RELEASING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
8 changes: 4 additions & 4 deletions include/blosc2.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down

0 comments on commit 1649e44

Please sign in to comment.