Skip to content

Commit 5fc02a0

Browse files
committed
Getting ready for release 2.16.0
1 parent b74a749 commit 5fc02a0

File tree

3 files changed

+17
-15
lines changed

3 files changed

+17
-15
lines changed

ANNOUNCE.md

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
1-
# Announcing C-Blosc2 2.15.2
1+
# Announcing C-Blosc2 2.16.0
22
A 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

1514
For more info, please see the release notes in:
1615

RELEASE_NOTES.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
Release 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

1013
Changes from 2.15.1 to 2.15.2
1114
=============================

include/blosc2.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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 */

0 commit comments

Comments
 (0)