Skip to content

Commit 8fbdb43

Browse files
committed
Getting ready for release 2.10.2
1 parent 1c5441f commit 8fbdb43

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

ANNOUNCE.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
1-
# Announcing C-Blosc2 2.10.1
1+
# Announcing C-Blosc2 2.10.2
22
A fast, compressed and persistent binary data store library for C.
33

44
## What is new?
55

66
This is a maintenance release with also several improvements for helping
7-
integration of C-Blosc2 in other projects (thanks to Alex Huebel). Also,
8-
`blosc2_remove_urlpath(const char *urlpath)` does not return an error
9-
when path does not exist.
7+
integration of C-Blosc2 in other projects (thanks to Alex Huebl). Also,
8+
some fixes for MinGW platform are in (thanks to Biswapriyo Nath).
109

1110
For more info, please see the release notes in:
1211

RELEASE_NOTES.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ Release notes for C-Blosc2
44
Changes from 2.10.1 to 2.10.2
55
=============================
66

7-
#XXX version-specific blurb XXX#
7+
* Several fixes for the CMake system. Thanks to Axel Huebl. See PR #541 and #542.
8+
9+
* Several fixes for mingw plaform. Thanks to Biswapriyo Nath. See PR #540 and #543.
810

911

1012
Changes from 2.10.0 to 2.10.1
@@ -17,7 +19,7 @@ Changes from 2.10.0 to 2.10.1
1719
on install, so CMake users do not need to write `FindBlosc2.cmake`
1820
files anymore. This also helps to preserve transitive dependencies on
1921
CMake targets, especially useful for fully static builds, e.g., for
20-
Python wheels. Thanks to @ax3l (Axel Huebel). See PR #537.
22+
Python wheels. Thanks to @ax3l (Axel Huebl). See PR #537.
2123

2224
* Fix new typos. Thanks to @DimitriPapadopoulos. See PR #538.
2325

include/blosc2.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@ extern "C" {
8585
#define BLOSC2_VERSION_MINOR 10 /* for minor interface/format changes */
8686
#define BLOSC2_VERSION_RELEASE 2 /* for tweaks, bug-fixes, or development */
8787

88-
#define BLOSC2_VERSION_STRING "2.10.2.dev" /* string version. Sync with above! */
89-
#define BLOSC2_VERSION_DATE "$Date:: 2023-08-01 #$" /* date version */
88+
#define BLOSC2_VERSION_STRING "2.10.2" /* string version. Sync with above! */
89+
#define BLOSC2_VERSION_DATE "$Date:: 2023-08-19 #$" /* date version */
9090

9191

9292
/* The maximum number of dimensions for Blosc2 NDim arrays */

0 commit comments

Comments
 (0)