Skip to content

Commit

Permalink
Getting ready for release 0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
martaiborra committed Jan 25, 2024
1 parent 10ff368 commit df2e1e6
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
8 changes: 4 additions & 4 deletions ANNOUNCE.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
Announcing blosc2-grok 0.2.1
Announcing blosc2-grok 0.2.2
============================

This is a minor release, where the default parameters are
automatically changed to the defaults in blosc2-grok
without having to call `set_params_defaults`.
This is a minor release, where the grok library
is automatically initialized when needed instead of
having to import the package.
For more info, you can have a look at the release notes in:

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

## Changes from 0.2.1 to 0.2.2

#XXX version-specific blurb XXX#
* Changed initialization of the grok library
to first time it is used. This evicts having to import
the `blosc2-grok` package to use the plugin.


## Changes from 0.2.0 to 0.2.1
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.2.2.dev0"
__version__ = "0.2.2"


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.2.2.dev0"
version = "0.2.2"
readme = "README.md"
authors = [
{name = "Blosc Development Team", email = "[email protected]"},
Expand Down

0 comments on commit df2e1e6

Please sign in to comment.