diff --git a/ANNOUNCE.rst b/ANNOUNCE.rst index 3c7892b3..8abb422d 100644 --- a/ANNOUNCE.rst +++ b/ANNOUNCE.rst @@ -1,22 +1,14 @@ =============================================================== - Announcing C-Blosc 1.20.0 + Announcing C-Blosc 1.20.1 A blocking, shuffling and lossless compression library for C =============================================================== What is new? ============ -More safety checks have been implemented so that potential flaws -discovered by new fuzzers in OSS-Fuzzer are fixed (@nmoinvaz). -Also, the `_xgetbv()` collision has been fixed (@mgorny). - -Also, a new version of blosclz (2.3.0) codec has been backported from -C-Blosc2. Expect better compression ratios for faster codecs. For -details, see our new blog post: https://blosc.org/posts/beast-release/ - -Last but not least, the chunk format has been fully described so -that 3rd party software may come with a different implementation, -but still compatible with C-Blosc chunks. +This is a maintenance release. Vendored zlib 1.2.8 is now compatible +with Python 3.8 in recent Mac OSX. For details, see: +https://github.com/Blosc/python-blosc/issues/229 For more info, please see the release notes in: diff --git a/RELEASE_NOTES.rst b/RELEASE_NOTES.rst index 27f96610..dd0812b5 100644 --- a/RELEASE_NOTES.rst +++ b/RELEASE_NOTES.rst @@ -5,7 +5,9 @@ Changes from 1.20.0 to 1.20.1 ============================= - #XXX version-specific blurb XXX# +* Added `` in vendored zlib 1.2.8 for compatibility with Python 3.8 + in recent Mac OSX. For details, see: + https://github.com/Blosc/python-blosc/issues/229 Changes from 1.19.1 to 1.20.0 ============================= diff --git a/blosc/blosc.h b/blosc/blosc.h index 6e9575c1..4c4839c1 100644 --- a/blosc/blosc.h +++ b/blosc/blosc.h @@ -21,9 +21,9 @@ extern "C" { #define BLOSC_VERSION_MINOR 20 /* for minor interface/format changes */ #define BLOSC_VERSION_RELEASE 1 /* for tweaks, bug-fixes, or development */ -#define BLOSC_VERSION_STRING "1.20.1.dev" /* string version. Sync with above! */ +#define BLOSC_VERSION_STRING "1.20.1" /* string version. Sync with above! */ #define BLOSC_VERSION_REVISION "$Rev$" /* revision version */ -#define BLOSC_VERSION_DATE "$Date:: 2020-07-25 #$" /* date version */ +#define BLOSC_VERSION_DATE "$Date:: 2020-09-08 #$" /* date version */ #define BLOSCLZ_VERSION_STRING "2.3.0" /* the internal compressor version */