Skip to content

Commit fd93217

Browse files
committed
Getting ready for release 2.14.1
1 parent cd601ad commit fd93217

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

ANNOUNCE.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
# Announcing C-Blosc2 2.14.0
1+
# Announcing C-Blosc2 2.14.1
22
A fast, compressed and persistent binary data store library for C.
33

44
## What is new?
55

6-
This is a minor release for adding an accelerated path in `b2nd_append()`.
7-
Also, many fixes and improvements have been added.
6+
This is a maintenance release. When loading plugins, first try with
7+
`python` and then `python3`. This is because many linux distros
8+
do not have `python` as a symlink to `python3` anymore.
89

910
For more info, please see the release notes in:
1011

RELEASE_NOTES.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ Release notes for C-Blosc2
44
Changes from 2.14.0 to 2.14.1
55
=============================
66

7-
#XXX version-specific blurb XXX#
7+
* When loading plugins, first try with `python` and then `python3`.
8+
This is because many linux distros do not have `python` as a
9+
symlink to `python3` anymore.
810

911
Changes from 2.13.2 to 2.14.0
1012
=============================

include/blosc2.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@ extern "C" {
8585
#define BLOSC2_VERSION_MINOR 14 /* for minor interface/format changes */
8686
#define BLOSC2_VERSION_RELEASE 1 /* for tweaks, bug-fixes, or development */
8787

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

9191

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

0 commit comments

Comments
 (0)