Skip to content

Commit 6fce083

Browse files
committed
Getting ready for release 1.9.2
1 parent 97cf39b commit 6fce083

4 files changed

Lines changed: 23 additions & 8 deletions

File tree

ANNOUNCE.rst

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
=============================
2-
Announcing python-blosc 1.9.1
2+
Announcing python-blosc 1.9.2
33
=============================
44

55
What is new?
66
============
77

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

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

RELEASE_NOTES.rst

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,20 @@
1313
Changes from 1.9.1 to 1.9.2
1414
===========================
1515

16-
#XXX version-specific blurb XXX#
16+
- Internal C-Blosc updated to 1.20.1. This fixes
17+
https://github.com/Blosc/python-blosc/issues/229, and also brings
18+
many new updates in internal codecs, providing interesting bumps
19+
in performance in some cases.
20+
21+
- Due to recent addition of more cores in new CPUs, the number of
22+
internal threads to be used by default has been increased from 4 to 8.
23+
24+
- Allow zero-copy decompression by allowing bytes-like input. See PR:
25+
https://github.com/Blosc/python-blosc/issues/229. Thanks to Lehman
26+
Garrison.
27+
28+
- Fix DeprecationWarning due to invalid escape sequence and use
29+
array.tobytes for Python 3.9.
1730

1831

1932
Changes from 1.9.0 to 1.9.1
@@ -202,7 +215,7 @@ Changes from 1.3.0 to 1.3.1
202215
BLOSC_MAX_THREADS
203216
BLOSC_MAX_TYPESIZE
204217
However, these are considered deprecated and should be replaced by
205-
libraries using python-blosc by the ones without the BLOSC_ prefix.
218+
libraries using python-blosc by the ones without the `BLOSC_` prefix.
206219

207220

208221
Changes from 1.2.8 to 1.3.0

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.9.2-dev0
1+
1.9.2

doc/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
# The short X.Y version.
5959
version = '1.9'
6060
# The full version, including alpha/beta/rc tags.
61-
release = '1.9.2.dev0'
61+
release = '1.9.2'
6262

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

0 commit comments

Comments
 (0)