Skip to content

Commit 12e9dec

Browse files
committed
Getting ready for release 3.12.1
1 parent ccd7608 commit 12e9dec

File tree

4 files changed

+8
-13
lines changed

4 files changed

+8
-13
lines changed

ANNOUNCE.rst

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,11 @@
1-
Announcing Python-Blosc2 3.12.0
1+
Announcing Python-Blosc2 3.12.1
22
===============================
33

4-
This is a minor release where we have aimed to tidy up the code and fix some small bugs:
4+
This is a patch release where we have aimed to close a security loophole:
55

6-
``LazyUDF`` objects can now be saved to disk
6+
Hotfix for security - disallow ``import`` in (saved) ``LazyUDF`` objects
77

8-
✅ Calls to ``__matmul__`` NumPy ufunc now passed to ``blosc2.matmul``
9-
10-
✅ Streamlined ``LazyUDF.compute`` is now much more robust and functional
11-
12-
✅ The ``get_chunk`` method for ``LazyExpr`` is more efficient and enabled for general ``LazyArray`` objects
13-
14-
✅ ``LazyExpr`` calculation can now be done even with expressions with pure scalar operands, e.g ``10 * 3 +1.``.
8+
✅ Automate WASM wheel upload via YAML file
159

1610
You can think of Python-Blosc2 3.x as an extension of NumPy/numexpr that:
1711

RELEASE_NOTES.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22

33
## Changes from 3.12.0 to 3.12.1
44

5-
XXX version-specific blurb XXX
5+
* Hotfix for security - disallow ``import`` in (saved) ``LazyUDF`` objects
6+
* Automate WASM wheel upload via YAML file
67

78
## Changes from 3.11.1 to 3.12.0
89

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ dependencies = [
4141
"py-cpuinfo; platform_machine != 'wasm32'",
4242
"requests",
4343
]
44-
version = "3.12.1.dev0"
44+
version = "3.12.1"
4545
[project.entry-points."array_api"]
4646
blosc2 = "blosc2"
4747

src/blosc2/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version__ = "3.12.1.dev0"
1+
__version__ = "3.12.1"
22
__array_api_version__ = "2024.12"

0 commit comments

Comments
 (0)