Skip to content

Commit

Permalink
Getting ready for release 1.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
FrancescAlted committed Sep 9, 2020
1 parent 97cf39b commit 6fce083
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 8 deletions.
10 changes: 6 additions & 4 deletions ANNOUNCE.rst
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
=============================
Announcing python-blosc 1.9.1
Announcing python-blosc 1.9.2
=============================

What is new?
============

We disabled the attempt to include support for SSE2 and AVX2 on
non-Intel platforms, allowing the build on such platforms (see #244).
Thanks to Lehman Garrison.
This is a maintenance release for better support recent version of Python
(3.8 and 3.9). Also, and due to the evolution of modern CPUs, the
number of default threads has been raised to 8 (from 4).
Finally, zero-copy decompression is now supported by allowing bytes-like
input. Thanks to Lehman Garrison.

For more info, you can have a look at the release notes in:

Expand Down
17 changes: 15 additions & 2 deletions RELEASE_NOTES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,20 @@
Changes from 1.9.1 to 1.9.2
===========================

#XXX version-specific blurb XXX#
- Internal C-Blosc updated to 1.20.1. This fixes
https://github.com/Blosc/python-blosc/issues/229, and also brings
many new updates in internal codecs, providing interesting bumps
in performance in some cases.

- Due to recent addition of more cores in new CPUs, the number of
internal threads to be used by default has been increased from 4 to 8.

- Allow zero-copy decompression by allowing bytes-like input. See PR:
https://github.com/Blosc/python-blosc/issues/229. Thanks to Lehman
Garrison.

- Fix DeprecationWarning due to invalid escape sequence and use
array.tobytes for Python 3.9.


Changes from 1.9.0 to 1.9.1
Expand Down Expand Up @@ -202,7 +215,7 @@ Changes from 1.3.0 to 1.3.1
BLOSC_MAX_THREADS
BLOSC_MAX_TYPESIZE
However, these are considered deprecated and should be replaced by
libraries using python-blosc by the ones without the BLOSC_ prefix.
libraries using python-blosc by the ones without the `BLOSC_` prefix.


Changes from 1.2.8 to 1.3.0
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.9.2-dev0
1.9.2
2 changes: 1 addition & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
# The short X.Y version.
version = '1.9'
# The full version, including alpha/beta/rc tags.
release = '1.9.2.dev0'
release = '1.9.2'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down

0 comments on commit 6fce083

Please sign in to comment.