Skip to content

Commit

Permalink
ENH: Bump elastix version from 5.0.1 to 5.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
N-Dekker committed Jan 12, 2023
1 parent 78ba7e1 commit d652938
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ElastixGitHubActions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,22 +20,22 @@ jobs:
cxx-compiler: "g++"
itk-git-tag: "v5.3.0"
cmake-build-type: "Release"
ANNLib: "libANNlib-5.0.so"
ANNLib2: "libANNlib-5.0.so.1"
ANNLib: "libANNlib-5.1.so"
ANNLib2: "libANNlib-5.1.so.1"
- os: windows-2019
c-compiler: "cl.exe"
cxx-compiler: "cl.exe"
itk-git-tag: "v5.3.0"
cmake-build-type: "Release"
ANNLib: "ANNlib-5.0.dll"
ANNLib: "ANNlib-5.1.dll"
vcvars64: "C:/Program Files (x86)/Microsoft Visual Studio/2019/Enterprise/VC/Auxiliary/Build/vcvars64.bat"
- os: macos-11
c-compiler: "clang"
cxx-compiler: "clang++"
itk-git-tag: "v5.3.0"
cmake-build-type: "Release"
ANNLib: "libANNlib-5.0.1.dylib"
ANNLib2: "libANNlib-5.0.dylib"
ANNLib: "libANNlib-5.1.1.dylib"
ANNLib2: "libANNlib-5.1.dylib"

steps:
- uses: actions/checkout@v2
Expand Down
4 changes: 2 additions & 2 deletions CMake/elastixVersion.cmake
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Elastix version number components.
set(ELASTIX_VERSION_MAJOR "5")
set(ELASTIX_VERSION_MINOR "0")
set(ELASTIX_VERSION_PATCH "1")
set(ELASTIX_VERSION_MINOR "1")
set(ELASTIX_VERSION_PATCH "0")

set(ELASTIX_VERSION "${ELASTIX_VERSION_MAJOR}.${ELASTIX_VERSION_MINOR}.${ELASTIX_VERSION_PATCH}")
2 changes: 1 addition & 1 deletion Testing/PythonTests/transformix_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
class TransformixTestCase(unittest.TestCase):
"""Tests transformix from https://elastix.lumc.nl"""

version_string = "5.0.1"
version_string = "5.1.0"
transformix_exe_file_path = pathlib.Path(os.environ["TRANSFORMIX_EXE"])
temporary_directory_path = pathlib.Path(os.environ["TRANSFORMIX_TEST_TEMP_DIR"])

Expand Down

0 comments on commit d652938

Please sign in to comment.