From 583288b1898dedcfb5e4d602e31020b452971383 Mon Sep 17 00:00:00 2001 From: Simon Rit <simon.rit@creatis.insa-lyon.fr> Date: Sun, 7 Jul 2024 10:34:22 +0200 Subject: [PATCH] ENH: Bump version for ITK 5.4.0 --- CMakeLists.txt | 2 +- documentation/Release.md | 12 ++++++------ pyproject.toml | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 415c1e3fc..4dd7e6f72 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,7 +31,7 @@ project(RTK) ## RTK Version set(RTK_VERSION_MAJOR "2") -set(RTK_VERSION_MINOR "5") +set(RTK_VERSION_MINOR "6") set(RTK_VERSION_PATCH "0") set(RTK_VERSION_STRING "${RTK_VERSION_MAJOR}.${RTK_VERSION_MINOR}") diff --git a/documentation/Release.md b/documentation/Release.md index 0be0ce2e5..b507dcced 100644 --- a/documentation/Release.md +++ b/documentation/Release.md @@ -8,22 +8,22 @@ Check ITK's instructions and update this wiki page accordingly. Based on previous messages (`git show tags`). ``` -git log --no-merges v2.4.0..HEAD --pretty=format:"%h; %an; %ad: %s" >release_notes.txt -git log --no-merges v2.4.0..HEAD --pretty=format:"%an" | sort -u >contributors.txt +git log --no-merges v2.5.0..HEAD --pretty=format:"%h; %an; %ad: %s" >release_notes.txt +git log --no-merges v2.5.0..HEAD --pretty=format:"%an" | sort -u >contributors.txt ``` ## Prepare repository * Modify the RTK release number(s) in `CMakeLists.txt`, -* Modify the RTK release number and the required ITK version for Python packages in `setup.py`. -* Tag git repository on this change with a copy of the release message. +* Modify the RTK release number and the required ITK version for Python packages in `pyproject.toml`. +* Commit these changes and tag the commit. Push and release via GitHub when the Python packages have been compiled and uploaded. ## Backup Doxygen documentation ``` ctest -S /home/srit/src/rtk/rtk-dashboard/russula_doxygen.cmake -V cd /home/srit/src/rtk/RTK-website/ -mv /home/srit/src/rtk/dashboard_tests/RTK-Doxygen/Doxygen/html Doxygen241 +mv /home/srit/src/rtk/dashboard_tests/RTK-Doxygen/Doxygen/html Doxygen250 ./sync.sh ``` @@ -39,4 +39,4 @@ Post message on the mailing list [`rtk-users@openrtk.org`](mailto:rtk-users@open ## Verify binaries -Binaries will now be posted by GitHub actions when tagging the repository, simply verify that the Github action goes well and that the packages have been posted once it is over. +Binaries will now be posted by GitHub actions when tagging the repository, simply verify that the Github action goes well and that the packages have been posted once it is over. diff --git a/pyproject.toml b/pyproject.toml index 9e28b7fa4..db42c8645 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "scikit_build_core.build" [project] name = "itk-rtk" -version = "2.5.0" +version = "2.6.0" description = "The Reconstruction Toolkit (RTK) for fast circular cone-beam CT reconstruction" readme = "README.md" license = {file = "LICENSE.TXT"}