Skip to content

Commit df2e1e6

Browse files
committed
Getting ready for release 0.2.2
1 parent 10ff368 commit df2e1e6

4 files changed

Lines changed: 9 additions & 7 deletions

File tree

ANNOUNCE.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
Announcing blosc2-grok 0.2.1
1+
Announcing blosc2-grok 0.2.2
22
============================
33

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

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

RELEASE_NOTES.md

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

33
## Changes from 0.2.1 to 0.2.2
44

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

79

810
## Changes from 0.2.0 to 0.2.1

blosc2_grok/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
import atexit
1515
import numpy as np
1616

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

1919

2020
class GrkFileFmt(Enum):

pyproject.toml

Lines changed: 1 addition & 1 deletion
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.2.2.dev0"
15+
version = "0.2.2"
1616
readme = "README.md"
1717
authors = [
1818
{name = "Blosc Development Team", email = "contact@blosc.org"},

0 commit comments

Comments
 (0)