Skip to content

Commit e712093

Browse files
authored
Release version 0.13.0 (#1128)
* Release version 0.13.0 * Update headers
1 parent 54312af commit e712093

5 files changed

Lines changed: 6 additions & 9 deletions

File tree

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
cmake_minimum_required(VERSION 3.25...4.2)
66

7-
project(DDC VERSION 0.12.0 LANGUAGES CXX)
7+
project(DDC VERSION 0.13.0 LANGUAGES CXX)
88

99
# List of options
1010

install_test/CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ endforeach()
5252
# and the additivity of DDC components.
5353

5454
# Find DDC without components, only core will be defined
55-
find_package(DDC 0.12 REQUIRED)
55+
find_package(DDC 0.13 REQUIRED)
5656

5757
# Targets that must exist
5858
foreach(target IN ITEMS DDC::core)
@@ -80,7 +80,7 @@ foreach(
8080
endforeach()
8181

8282
# Find again DDC with fft component, core and fft will be defined
83-
find_package(DDC 0.12 REQUIRED COMPONENTS fft)
83+
find_package(DDC 0.13 REQUIRED COMPONENTS fft)
8484

8585
# Targets that must exist
8686
foreach(target IN ITEMS DDC::core DDC::fft)
@@ -108,7 +108,7 @@ foreach(
108108
endforeach()
109109

110110
# Find again DDC with pdi and splines components, all components will be defined
111-
find_package(DDC 0.12 REQUIRED COMPONENTS pdi splines)
111+
find_package(DDC 0.13 REQUIRED COMPONENTS pdi splines)
112112

113113
# Targets that must exist
114114
foreach(target IN ITEMS DDC::core DDC::fft DDC::pdi DDC::splines)

install_test/subdir/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
#
33
# SPDX-License-Identifier: MIT
44

5-
find_package(DDC 0.12 REQUIRED COMPONENTS fft pdi splines)
5+
find_package(DDC 0.13 REQUIRED COMPONENTS fft pdi splines)

src/ddc/for_each_block.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,11 @@
22
//
33
// SPDX-License-Identifier: MIT
44

5+
#include <cassert>
56
#include <cstddef>
67
#include <span>
78
#include <stdexcept>
89

9-
#include <Kokkos_Core.hpp>
10-
1110
#include "discrete_vector.hpp"
1211
#include "for_each_block.hpp"
1312

src/ddc/for_each_block.hpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88
#include <cstddef>
99
#include <span>
1010

11-
#include <Kokkos_Core.hpp>
12-
1311
#include "detail/type_seq.hpp"
1412

1513
#include "discrete_element.hpp"

0 commit comments

Comments
 (0)