Skip to content

Commit 659ac13

Browse files
authored
post release (#42)
1 parent 2028c4e commit 659ac13

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

docs/source/changelog.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Change Log
22

3+
## v0.x.x (Unreleased)
4+
### New features
5+
6+
### Maintenance and fixes
7+
8+
### Documentation
9+
310
## v0.5.0 (2023 Jan 16)
411
### New features
512
* Added {func}`.empty_ref`, {func}`.ones_ref` and {func}`.zeros_ref` DataArray creation helpers {pull}`37`

docs/source/contributing/how_to.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ on an environment that has a specific set of dependencies installed.
3333

3434
### Release preparation
3535
1. Create a new branch
36+
1. Check dependency version pins in `pyproject.toml`, they should follow [SPEC 0](https://scientific-python.org/specs/spec-0000/) roughly.
3637
1. Review the change log (`docs/source/changelog.md`). The unreleased section
3738
should be updated to the current version and release date _and not yet added_
3839
1. Update the version number in `__init__.py`. That is, remove the `dev` flag, it should not

src/xarray_einstats/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
__all__ = ["einsum", "raw_einsum", "einsum_path", "matmul", "zeros_ref", "ones_ref", "empty_ref"]
1111

12-
__version__ = "0.5.0"
12+
__version__ = "0.6.0.dev0"
1313

1414

1515
def sort(da, dim, **kwargs):

0 commit comments

Comments
 (0)