diff --git a/.github/workflows/fuzz.yml b/.github/workflows/fuzz.yml index 220a5d5b..dfc47960 100644 --- a/.github/workflows/fuzz.yml +++ b/.github/workflows/fuzz.yml @@ -1,5 +1,5 @@ name: CI Fuzz -on: [pull_request] +on: [push, pull_request] jobs: Fuzzing: runs-on: ubuntu-latest diff --git a/ANNOUNCE.md b/ANNOUNCE.md index 5902326c..8884238f 100644 --- a/ANNOUNCE.md +++ b/ANNOUNCE.md @@ -1,10 +1,10 @@ -# Announcing C-Blosc2 2.14.2 +# Announcing C-Blosc2 2.14.3 A fast, compressed and persistent binary data store library for C. ## What is new? -This is a maintenance release. Security issue CVE-2024-3203 and -CVE-2024-3204 have been fixed. +This is a maintenance release. We have fixed some additional security +issues discovered by OSS-Fuzz. For more info, please see the release notes in: diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 176d2732..e39bc53e 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,6 +1,11 @@ Release notes for C-Blosc2 ========================== +Changes from 2.14.2 to 2.14.3 +============================= + +* More fixes for internal fuzzer. + Changes from 2.14.1 to 2.14.2 ============================= diff --git a/include/blosc2.h b/include/blosc2.h index 6193df4e..9c3a6ff0 100644 --- a/include/blosc2.h +++ b/include/blosc2.h @@ -83,9 +83,9 @@ extern "C" { /* Version numbers */ #define BLOSC2_VERSION_MAJOR 2 /* for major interface/format changes */ #define BLOSC2_VERSION_MINOR 14 /* for minor interface/format changes */ -#define BLOSC2_VERSION_RELEASE 2 /* for tweaks, bug-fixes, or development */ +#define BLOSC2_VERSION_RELEASE 3 /* for tweaks, bug-fixes, or development */ -#define BLOSC2_VERSION_STRING "2.14.2" /* string version. Sync with above! */ +#define BLOSC2_VERSION_STRING "2.14.3" /* string version. Sync with above! */ #define BLOSC2_VERSION_DATE "$Date:: 2023-04-06 #$" /* date version */