From 4220d20b4ee797c19f2916db3264d35e5a976466 Mon Sep 17 00:00:00 2001 From: Simon Rit Date: Tue, 26 Jan 2021 10:44:41 +0100 Subject: [PATCH] Release of RTK v2.2.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Dear RTK users, RTK v2.2.0 has just been released, about fourteen months after RTK v2.1.0. This release is intended to produce python packages compatible with ITK v5.1.1 and v5.1.2 (current release on pypi.org). I will soon prepare another release for ITK v5.2. Release notes: * New projectors with PSF correction for SPECT reconstruction * New quadratic regularization in OSEM * Progress reporters for FDK and iterative reconstruction algorithms * New continuous integration using Github actions, following ITKModuleTemplate * Alignment with ITK developments * Enhanced Python wrappings * Many compilation, bug and style fixes Many thanks to all contributors for this release, in alphabetical order: Sebastien Brousmiche, Aurélien Coussat, Julien Finet, Lucas Gandel, Hans Johnson, Matt McCormick, Antoine Robert, MrTzschr, Simon Rit, Pierre-Antoine Rodesch and Vincent Libertiaux. As usual, be aware that we do not focus on releases since we have a public github repository that we aim at keeping stable. I still recommend the use of the master HEAD over releases to enjoy the new RTK developments before their release. Corresponding python packages can now be downloaded from the Github action. We still have a few on-going projects for which we will use and enhance RTK. --- CMakeLists.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index add183ec2..3dfa01696 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -41,7 +41,7 @@ project(RTK) ## RTK Version set(RTK_VERSION_MAJOR "2") -set(RTK_VERSION_MINOR "1") +set(RTK_VERSION_MINOR "2") set(RTK_VERSION_PATCH "0") set(RTK_VERSION_STRING "${RTK_VERSION_MAJOR}.${RTK_VERSION_MINOR}") diff --git a/setup.py b/setup.py index ee34d0a73..cfc1af18c 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ setup( name='itk-rtk', - version='2.1.0', + version='2.2.0', author='RTK Consortium', author_email='rtk-users@openrtk.org', packages=['itk'],