Skip to content

Commit 8998c37

Browse files
committed
Post 3.5.0 release actions done
1 parent ab96878 commit 8998c37

File tree

5 files changed

+17
-6
lines changed

5 files changed

+17
-6
lines changed

ANNOUNCE.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ It allows you to stack multiple Blosc2 NDarrays along a new axis, similar
66
to NumPy's ``np.stack()``. This is particularly useful for creating
77
higher-dimensional arrays from lower-dimensional ones.
88

9+
We have blogged about this new feature:
10+
https://www.blosc.org/posts/blosc2-new-concatenate/#stacking-arrays
11+
912
You can think of Python-Blosc2 3.x as an extension of NumPy/numexpr that:
1013

1114
- Can deal with ndarrays compressed using first-class codecs & filters.

RELEASE_NOTES.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
11
# Release notes
22

3+
## Changes from 3.5.0 to 3.5.1
4+
5+
XXX version-specific blurb XXX
6+
37
## Changes from 3.4.0 to 3.5.0
48

59
* New `blosc2.stack()` function for stacking multiple arrays along a new axis.
610
Useful for creating multi-dimensional arrays from multiple 1D arrays.
7-
See PR #427. Thanks to [@lshaw8317](Luke Shaw) for the implementation!
11+
See PR #427. Thanks to [Luke Shaw](@lshaw8317) for the implementation!
12+
Blog: https://www.blosc.org/posts/blosc2-new-concatenate/#stacking-arrays
813

914
* New `blosc2.expand_dims()` function for expanding the dimensions of an array.
1015
This is useful for adding a new axis to an array, similar to NumPy's `np.expand_dims()`.
11-
See PR #427. Thanks to [@lshaw8317](Luke Shaw) for the implementation!
16+
See PR #427. Thanks to [Luke Shaw](@lshaw8317) for the implementation!
1217

1318
## Changes from 3.3.4 to 3.4.0
1419

RELEASING.rst

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,11 @@ Checking packaging
110110

111111
[upload e.g.:] blosc2-3.2.0-cp312-cp312-pyodide_2024_0_wasm32.whl
112112

113-
The wheels may be downloaded by going to "Actions->Python wheels for WASM" and selecting the completed workflow run for the version you are releasing.
114-
Then, go to the "Artifacts" dropdown and download the WASM wheel file.
113+
The wheels may be downloaded by going to "Actions->Python wheels for WASM"
114+
and selecting the completed workflow run for the version you are releasing.
115+
Then, go to the "Artifacts" dropdown and download the WASM wheel file.
116+
117+
115118
Announcing
116119
----------
117120

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.5.0"
44+
version = "3.5.1.dev0"
4545

4646

4747
[project.optional-dependencies]

src/blosc2/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "3.5.0"
1+
__version__ = "3.5.1.dev0"

0 commit comments

Comments
 (0)