Skip to content

Commit 3ef15e5

Browse files
author
Simon Rit
committed
Release of RTK v2.1.0
Dear RTK users, RTK v2.1.0 <https://github.com/SimonRit/RTK/archive/v2.1.0.zip> has just been released, about six months after RTK v2.0.1. This release is intended for inclusion in the ITK v5.1rc01 release. Python packages will be prepared after the release of ITK v5.1rc01. Release notes: * Application of ITK's clang-format (Simon Rit). * Setup of Azure pileplies (Lucas Gandel). * 2 materials spectral one-step with Cuda (Pierre-Antoine Rodesch). * New Python wrappings (Pierre-Antoine Rodesch and Antoine Robert). * Simulation of attenuated line integrals (Simon Rit). * Spatially varying regularization weights in spectral one step (Simon Rit). * Add CPU and Cuda memory probes when reporting performances (Simon Rit). * Streaming of projections in spectral one step (Simon Rit). * New installation instructions (Simon Rit). * Various bugs and style fixes. Many thanks to all contributors, in alphabetical order for this release: Gordian Kabelitz, Antoine Robert, Lucas Gandel, Simon Rit and Pierre-Antoine Rodesch. As usual, be aware that we don't focus on releases since we have a public github repository <http://github.com/SimonRit/RTK> that we try to keep stable. I still recommend the use of the master HEAD over releases to enjoy the new RTK developments before their release. We still have a few on-going projects for which we will use and enhance RTK.
1 parent 28334b4 commit 3ef15e5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ project(RTK)
4141

4242
## RTK Version
4343
set(RTK_VERSION_MAJOR "2")
44-
set(RTK_VERSION_MINOR "0")
45-
set(RTK_VERSION_PATCH "1")
44+
set(RTK_VERSION_MINOR "1")
45+
set(RTK_VERSION_PATCH "0")
4646
set(RTK_VERSION_STRING "${RTK_VERSION_MAJOR}.${RTK_VERSION_MINOR}")
4747

4848
set(RTK_LIBRARIES RTK)

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
setup(
1515
name='itk-rtk',
16-
version='2.0.1',
16+
version='2.1.0',
1717
author='RTK Consortium',
1818
author_email='rtk-users@openrtk.org',
1919
packages=['itk'],
@@ -44,6 +44,6 @@
4444
keywords='RTK Reconstruction Toolkit',
4545
url=r'https://www.openrtk.org/',
4646
install_requires=[
47-
r'itk>=5.0'
47+
r'itk>=5.1'
4848
]
4949
)

0 commit comments

Comments
 (0)