Skip to content

Commit

Permalink
Getting ready for release 0.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
FrancescAlted committed Apr 4, 2024
1 parent d720d1a commit cdf2250
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
10 changes: 6 additions & 4 deletions ANNOUNCE.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
Announcing blosc2-grok 0.3.2
Announcing blosc2-grok 0.3.3
============================

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

You can have a look at the release notes in:

https://github.com/Blosc/blosc2_grok/releases
Expand Down
5 changes: 4 additions & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@

## Changes from 0.3.2 to 0.3.3

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

## Changes from 0.3.1 to 0.3.2

Expand Down
2 changes: 1 addition & 1 deletion blosc2_grok/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
import atexit
import numpy as np

__version__ = "0.3.3.dev0"
__version__ = "0.3.3"


class GrkFileFmt(Enum):
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ build-backend = "scikit_build_core.build"

[project]
name = "blosc2_grok"
version = "0.3.3.dev0"
version = "0.3.3"
readme = "README.md"
authors = [
{name = "Blosc Development Team", email = "[email protected]"},
Expand Down

0 comments on commit cdf2250

Please sign in to comment.