Skip to content

Commit cdf2250

Browse files
committed
Getting ready for release 0.3.3
1 parent d720d1a commit cdf2250

File tree

4 files changed

+12
-7
lines changed

4 files changed

+12
-7
lines changed

Diff for: ANNOUNCE.md

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1-
Announcing blosc2-grok 0.3.2
1+
Announcing blosc2-grok 0.3.3
22
============================
33

4-
This is a patch release. Now, there is support for arbitrary numbers
5-
of leading 1 dimensions in the input data. This is common in image data
6-
where the leading dimensions are reserved for stacks of images.
4+
This is a patch release. We have changed the Python extension
5+
from MODULE to SHARED on some platforms (Linux and MacOSX/arm64;
6+
the rest do not seem to support SHARED mode). This allows for
7+
a C program to use the plugin as a shared library.
8+
79
You can have a look at the release notes in:
810

911
https://github.com/Blosc/blosc2_grok/releases

Diff for: RELEASE_NOTES.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@
22

33
## Changes from 0.3.2 to 0.3.3
44

5-
#XXX version-specific blurb XXX#
5+
* Change the Python extension from MODULE to SHARED on some
6+
platforms (Linux and MacOSX/arm64; the rest do not seem
7+
to support SHARED mode). This allows for a C program to
8+
use the plugin as a shared library.
69

710
## Changes from 0.3.1 to 0.3.2
811

Diff for: blosc2_grok/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
import atexit
1515
import numpy as np
1616

17-
__version__ = "0.3.3.dev0"
17+
__version__ = "0.3.3"
1818

1919

2020
class GrkFileFmt(Enum):

Diff for: pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ build-backend = "scikit_build_core.build"
1212

1313
[project]
1414
name = "blosc2_grok"
15-
version = "0.3.3.dev0"
15+
version = "0.3.3"
1616
readme = "README.md"
1717
authors = [
1818
{name = "Blosc Development Team", email = "[email protected]"},

0 commit comments

Comments
 (0)