File tree Expand file tree Collapse file tree 3 files changed +17
-15
lines changed
Expand file tree Collapse file tree 3 files changed +17
-15
lines changed Original file line number Diff line number Diff line change 1- # Announcing C-Blosc2 2.15.2
1+ # Announcing C-Blosc2 2.16.0
22A fast, compressed and persistent binary data store library for C.
33
44## What is new?
55
6- This is a maintenance release in which we are fixing some issues
7- that have been reported by the community. The most relevant changes are:
6+ This introduces some new features and improvements:
87
9- * Support wasm32 by disabling ZLIB WITH_OPTIM option. Thanks to Miles Granger .
10-
11- * Added support for nvcc (NVidia Cuda Compiler) in CMake . Thanks to @ dqwu .
12-
13- * Fix public include directories for blosc2 targets. Thanks to Dmitry Mikushin .
8+ * Use _ fseeki64/ _ ftelli64/ _ stat64 on Windows for large file (>2 GB) support .
9+ Thanks to Abhi Jaiantilal ( @ ajaiantilal ) for the report and help.
10+ * Add 12-byte unshuffle for avx2 . Thanks to Tom Birch ( @ froody ) .
11+ * Add 12-byte sse2 unshuffle implementation. Thanks to Tom Birch ( @ froody ).
12+ * Better description of the Blosc2 format as a whole .
1413
1514For more info, please see the release notes in:
1615
Original file line number Diff line number Diff line change 11Release notes for C-Blosc2
22==========================
33
4- Changes from 2.15.2 to 2.15.3
4+ Changes from 2.15.2 to 2.16.0
55=============================
66
7- #XXX version-specific blurb XXX#
8-
7+ * Use _ fseeki64/_ ftelli64/_ stat64 on Windows for large file (>2 GB) support.
8+ Thanks to Abhi Jaiantilal (@ajaiantilal ) for the report and help.
9+ * Add 12-byte unshuffle for avx2. Thanks to Tom Birch (@froody ).
10+ * Add 12-byte sse2 unshuffle implementation. Thanks to Tom Birch (@froody ).
11+ * Better description of the Blosc2 format as a whole.
912
1013Changes from 2.15.1 to 2.15.2
1114=============================
Original file line number Diff line number Diff line change @@ -82,11 +82,11 @@ extern "C" {
8282
8383/* Version numbers */
8484#define BLOSC2_VERSION_MAJOR 2 /* for major interface/format changes */
85- #define BLOSC2_VERSION_MINOR 15 /* for minor interface/format changes */
86- #define BLOSC2_VERSION_RELEASE 3 /* for tweaks, bug-fixes, or development */
85+ #define BLOSC2_VERSION_MINOR 16 /* for minor interface/format changes */
86+ #define BLOSC2_VERSION_RELEASE 0 /* for tweaks, bug-fixes, or development */
8787
88- #define BLOSC2_VERSION_STRING "2.15.3.dev " /* string version. Sync with above! */
89- #define BLOSC2_VERSION_DATE "$Date:: 2024-11-28 #$" /* date version year-month-day */
88+ #define BLOSC2_VERSION_STRING "2.16.0 " /* string version. Sync with above! */
89+ #define BLOSC2_VERSION_DATE "$Date:: 2025-02-12 #$" /* date version year-month-day */
9090
9191
9292/* The maximum number of dimensions for Blosc2 NDim arrays */
You can’t perform that action at this time.
0 commit comments