Skip to content

Commit af507d5

Browse files
committed
Getting ready for release 4.1.1
1 parent 26e18b9 commit af507d5

5 files changed

Lines changed: 5 additions & 7 deletions

File tree

ANNOUNCE.rst

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
Announcing Python-Blosc2 4.0.0
22
===============================
33

4-
This is minor version release which introduces various new features: optimised compression and string functions (e.g. endswith) for unicode character arrays; cumulative reductions (see `the blog <https://blosc.org/posts/cumsum/>`_) ; memory-map support for store containers like ``DictStore`` ; as well as further improvements to our bespoke multi-threaded computation backend ``miniexpr``.
5-
6-
The main new feature is a DSL kernel functionality for faster, compiled, user-defined functions: these DSL kernels accelerate ``arange`` / ``linspace`` constructors by 6-10x. Tutorial: https://blosc.org/python-blosc2/getting_started/tutorials/03.lazyarray-udf-kernels.html.
4+
This is patch release which fixes a bug for ``miniexpr`` on ubuntu with ARM64.
75

86
You can think of Python-Blosc2 4.x as an extension of NumPy/numexpr that:
97

RELEASE_NOTES.md

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

33
## Changes from 4.1.0 to 4.1.1
44

5-
XXX version-specific blurb XXX
5+
- Update ``miniexpr`` to fix bug on ubuntu with ARM64.
66

77
## Changes from 4.0.0 to 4.1.0
88

RELEASING.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Preliminaries
2626

2727
* Build the package and make sure that tests are passing::
2828

29-
pip install -e ".[test]"
29+
pip install -e . --group test
3030
pytest
3131

3232
* Make sure that ``RELEASE_NOTES.md`` and ``ANNOUNCE.rst`` are up to date with the

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ dependencies = [
3939
"numexpr>=2.14.1; platform_machine != 'wasm32'",
4040
"requests",
4141
]
42-
version = "4.1.1.dev0"
42+
version = "4.1.1"
4343
[project.entry-points."array_api"]
4444
blosc2 = "blosc2"
4545

src/blosc2/version.py

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

0 commit comments

Comments
 (0)