From 659ac131f61dcd9ed89489236386992b5fc9a1d4 Mon Sep 17 00:00:00 2001 From: Oriol Abril-Pla Date: Mon, 16 Jan 2023 23:47:55 +0100 Subject: [PATCH] post release (#42) --- docs/source/changelog.md | 7 +++++++ docs/source/contributing/how_to.md | 1 + src/xarray_einstats/__init__.py | 2 +- 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/docs/source/changelog.md b/docs/source/changelog.md index 08cdd68..85ee0d3 100644 --- a/docs/source/changelog.md +++ b/docs/source/changelog.md @@ -1,5 +1,12 @@ # Change Log +## v0.x.x (Unreleased) +### New features + +### Maintenance and fixes + +### Documentation + ## v0.5.0 (2023 Jan 16) ### New features * Added {func}`.empty_ref`, {func}`.ones_ref` and {func}`.zeros_ref` DataArray creation helpers {pull}`37` diff --git a/docs/source/contributing/how_to.md b/docs/source/contributing/how_to.md index 4e3a08f..b8ec6eb 100644 --- a/docs/source/contributing/how_to.md +++ b/docs/source/contributing/how_to.md @@ -33,6 +33,7 @@ on an environment that has a specific set of dependencies installed. ### Release preparation 1. Create a new branch +1. Check dependency version pins in `pyproject.toml`, they should follow [SPEC 0](https://scientific-python.org/specs/spec-0000/) roughly. 1. Review the change log (`docs/source/changelog.md`). The unreleased section should be updated to the current version and release date _and not yet added_ 1. Update the version number in `__init__.py`. That is, remove the `dev` flag, it should not diff --git a/src/xarray_einstats/__init__.py b/src/xarray_einstats/__init__.py index e7017f5..0001f64 100644 --- a/src/xarray_einstats/__init__.py +++ b/src/xarray_einstats/__init__.py @@ -9,7 +9,7 @@ __all__ = ["einsum", "raw_einsum", "einsum_path", "matmul", "zeros_ref", "ones_ref", "empty_ref"] -__version__ = "0.5.0" +__version__ = "0.6.0.dev0" def sort(da, dim, **kwargs):