From ecb9afb8f33d0ceb05c3f7ebe94e92dedcc9e905 Mon Sep 17 00:00:00 2001 From: Marta Iborra Date: Mon, 4 Dec 2023 12:59:20 +0100 Subject: [PATCH] Post 0.0.1 release actions done --- RELEASING.rst | 4 ++-- blosc2_grok/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/RELEASING.rst b/RELEASING.rst index 0af3691..e737438 100644 --- a/RELEASING.rst +++ b/RELEASING.rst @@ -37,7 +37,7 @@ Tagging $ git push --tags -- Create a new release visiting https://github.com/Blosc/blosc2_btune/releases/new +- Create a new release visiting https://github.com/Blosc/blosc2_grok/releases/new and add the release notes copying them from `RELEASE_NOTES.md` document. @@ -59,7 +59,7 @@ Announcing Post-release actions -------------------- -- Edit *VERSION* symbols in blosc2_btune/__init__.py *and* src/btune.h *and* pyproject.toml in main to increment the +- Edit *VERSION* symbols in blosc2_btune/__init__.py *and* pyproject.toml in main to increment the version to the next minor one (i.e. X.Y.Z --> X.Y.(Z+1).dev). - Create new headers for adding new features in ``RELEASE_NOTES.md`` diff --git a/blosc2_grok/__init__.py b/blosc2_grok/__init__.py index 97dba49..d594efb 100644 --- a/blosc2_grok/__init__.py +++ b/blosc2_grok/__init__.py @@ -14,7 +14,7 @@ import atexit import numpy as np -__version__ = "0.0.1" +__version__ = "0.0.2.dev" class GrkProgOrder(Enum): diff --git a/pyproject.toml b/pyproject.toml index 08ac7c5..3f7be5f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,7 @@ build-backend = "scikit_build_core.build" [project] name = "blosc2_grok" -version = "0.0.1" +version = "0.0.2.dev" readme = "README.md" authors = [ {name = "Blosc Development Team", email = "contact@blosc.org"},