diff --git a/ANNOUNCE.rst b/ANNOUNCE.rst index 679f26bf9..3be79bad8 100644 --- a/ANNOUNCE.rst +++ b/ANNOUNCE.rst @@ -1,14 +1,12 @@ =============================================================== - Announcing C-Blosc 2.0.0-beta.1 + Announcing C-Blosc 2.0.0-beta.2 A simple, compressed and fast data store library for C =============================================================== What is new? ============ -This is the first beta version, so the API has been declared frozen from now on. To avoid name collisions with existing C-Blosc 1.x deployments, the library is officially called `blosc2` and the main header is `blosc2.h`. - -Also, this version offers a frame object so that data can be stored sequentially both in-memory and on-disk. Last but not least, blosc2 supports the optimized implementations of LZ4 in Intel's IPP for improved compression ratios and speed. +This is the second beta version, and the frame format has been much improved and [documented (yay!)](https://github.com/Blosc/c-blosc2/blob/master/README_FRAME_FORMAT.rst). Also, the metalayer-related functions are now updating the super-chunk instead of the frame. In principle, C-Blosc2 should be backward compatible with C-Blosc, so you can start using it right away and slowly begin to use its new functionality, like the new filters, prefilters, super-chunks and frames. See docs in: https://blosc2.readthedocs.io diff --git a/blosc/blosc2.h b/blosc/blosc2.h index 583b7b329..8b7251116 100644 --- a/blosc/blosc2.h +++ b/blosc/blosc2.h @@ -33,9 +33,9 @@ extern "C" { #define BLOSC_VERSION_MINOR 0 /* for minor interface/format changes */ #define BLOSC_VERSION_RELEASE 0 /* for tweaks, bug-fixes, or development */ -#define BLOSC_VERSION_STRING "2.0.0-beta.2.dev" /* string version. Sync with above! */ +#define BLOSC_VERSION_STRING "2.0.0-beta.2" /* string version. Sync with above! */ #define BLOSC_VERSION_REVISION "$Rev$" /* revision version */ -#define BLOSC_VERSION_DATE "$Date:: 2019-08-19 #$" /* date version */ +#define BLOSC_VERSION_DATE "$Date:: 2019-08-30 #$" /* date version */ /* The VERSION_FORMAT symbols below should be just 1-byte long */