Skip to content

Commit cfaa9c7

Browse files
committed
Getting ready for release 2.14.3
1 parent 9cc79a7 commit cfaa9c7

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

.github/workflows/fuzz.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: CI Fuzz
2-
on: [pull_request]
2+
on: [push, pull_request]
33
jobs:
44
Fuzzing:
55
runs-on: ubuntu-latest

ANNOUNCE.md

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

44
## What is new?
55

6-
This is a maintenance release. Security issue CVE-2024-3203 and
7-
CVE-2024-3204 have been fixed.
6+
This is a maintenance release. We have fixed some additional security
7+
issues discovered by OSS-Fuzz.
88

99
For more info, please see the release notes in:
1010

RELEASE_NOTES.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
Release notes for C-Blosc2
22
==========================
33

4+
Changes from 2.14.2 to 2.14.3
5+
=============================
6+
7+
* More fixes for internal fuzzer.
8+
49
Changes from 2.14.1 to 2.14.2
510
=============================
611

include/blosc2.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,9 @@ extern "C" {
8383
/* Version numbers */
8484
#define BLOSC2_VERSION_MAJOR 2 /* for major interface/format changes */
8585
#define BLOSC2_VERSION_MINOR 14 /* for minor interface/format changes */
86-
#define BLOSC2_VERSION_RELEASE 2 /* for tweaks, bug-fixes, or development */
86+
#define BLOSC2_VERSION_RELEASE 3 /* for tweaks, bug-fixes, or development */
8787

88-
#define BLOSC2_VERSION_STRING "2.14.2" /* string version. Sync with above! */
88+
#define BLOSC2_VERSION_STRING "2.14.3" /* string version. Sync with above! */
8989
#define BLOSC2_VERSION_DATE "$Date:: 2023-04-06 #$" /* date version */
9090

9191

0 commit comments

Comments
 (0)