diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 14c558b..18596a5 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.4.0 +current_version = 0.4.1 [comment] comment = The contents of this file cannot be merged with that of setup.cfg until https://github.com/c4urself/bump2version/issues/185 is resolved diff --git a/.zenono.json b/.zenono.json index 0d1187a..17af649 100644 --- a/.zenono.json +++ b/.zenono.json @@ -28,6 +28,11 @@ { "affiliation": "Vrije Universiteit Amsterdam", "name": "Van Ingen, Jannes" + }, + { + "orcid": "0000-0002-2546-4528", + "affiliation": "Netherlands eScience Center", + "name": "Donnelly, Claire" } ], diff --git a/CHANGELOG.md b/CHANGELOG.md index 1b5cef7..666a1a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,10 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/). ## [Unreleased] -## Added +## 0.4.1 (2024-10-02) +### Added - Dask support ([#181] (https://github.com/AI4S2S/s2spy/pull/181)) -## Changed +### Changed +- Changed code coverage from SonarCloud to Codecov ([#183] (https://github.com/AI4S2S/s2spy/pull/183)) +- Update CONTRIBUTING.md and README.md to be consistent with README.dev.md ([#183] (https://github.com/AI4S2S/s2spy/pull/183)) ## 0.4.0 (2023-09-13) diff --git a/CITATION.cff b/CITATION.cff index 2e03707..ee6f2fc 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -45,7 +45,7 @@ authors: orcid: https://orcid.org/0000-0002-2546-4528 date-released: 2022-09-02 -version: "0.4.0" +version: "0.4.1" repository-code: "https://github.com/AI4S2S/s2spy" keywords: - s2s diff --git a/docs/conf.py b/docs/conf.py index 3e3cd98..8b9f67e 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -26,7 +26,7 @@ # built documents. # # The short X.Y version. -version = "0.4.0" +version = "0.4.1" # The full version, including alpha/beta/rc tags. release = version diff --git a/s2spy/__init__.py b/s2spy/__init__.py index b829b65..e9a5600 100644 --- a/s2spy/__init__.py +++ b/s2spy/__init__.py @@ -12,6 +12,6 @@ __author__ = "Yang Liu" __email__ = "y.liu@esciencecenter.nl" -__version__ = "0.4.0" +__version__ = "0.4.1" __all__ = ["RGDR"]