From 206e875157b9c9889603cbf2929bcfb5fa095e54 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20POIRET?= Date: Fri, 29 Mar 2024 11:27:25 +0100 Subject: [PATCH] chore: bump to v1.2.1 --- .github/workflows/python-app.yml | 4 ++-- LAST_CHANGELOG.md | 8 ++------ README.rst | 4 ++++ docs/about/release-notes.md | 4 ++++ hsf/__init__.py | 2 +- pyproject.toml | 2 +- 6 files changed, 14 insertions(+), 10 deletions(-) diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index 38c7294..693b2ad 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -19,10 +19,10 @@ jobs: runs-on: ${{ matrix.operating-system }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} diff --git a/LAST_CHANGELOG.md b/LAST_CHANGELOG.md index 6fad604..9162463 100644 --- a/LAST_CHANGELOG.md +++ b/LAST_CHANGELOG.md @@ -2,12 +2,8 @@ ## Software -* Release of the HSF finetuning pipeline, -* Bug fixes and optimizations, -* Updated dependencies. +* Option to override already segmented mris. ## Models -* Models trained on hippocampal subfields from Clark et al. (2023) dataset (https://doi.org/10.1038/s41597-023-02449-9), -* Models are now hosted on HuggingFace, -* Bug fixes and optimizations. +* No changelog. diff --git a/README.rst b/README.rst index 8f1e7e9..4d68e7d 100644 --- a/README.rst +++ b/README.rst @@ -220,6 +220,10 @@ Changelogs HSF --- +**Version 1.2.1** + +* Option to override already segmented mris. + **Version 1.2.0** * Released finetuning scripts, diff --git a/docs/about/release-notes.md b/docs/about/release-notes.md index cd412f9..5ca30e5 100644 --- a/docs/about/release-notes.md +++ b/docs/about/release-notes.md @@ -16,6 +16,10 @@ Current maintainers: ## HSF +### Version 1.2.1 (2024-03-29) + +* Added an option to override already segmented mris. + ### Version 1.2.0 (2024-02-06) * Released finetuning scripts, diff --git a/hsf/__init__.py b/hsf/__init__.py index 58d478a..3f262a6 100644 --- a/hsf/__init__.py +++ b/hsf/__init__.py @@ -1 +1 @@ -__version__ = '1.2.0' +__version__ = '1.2.1' diff --git a/pyproject.toml b/pyproject.toml index cb6ab6f..1e3d8fb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "HSF" -version = "1.2.0" +version = "1.2.1" description = "A simple yet exhaustive segmentation tool of the Hippocampal Subfields in T1w and T2w MRIs." authors = ["Clément POIRET "] license = "MIT"