From 687af1b61f64d63018e754ac57941e6c64f10002 Mon Sep 17 00:00:00 2001 From: Philip Salzmann Date: Thu, 13 Jul 2023 18:13:45 +0200 Subject: [PATCH] Bump version to 0.4.0 --- VERSION | 2 +- examples/convolution/CMakeLists.txt | 2 +- examples/distr_io/CMakeLists.txt | 2 +- examples/hello_world/CMakeLists.txt | 2 +- examples/matmul/CMakeLists.txt | 2 +- examples/reduction/CMakeLists.txt | 2 +- examples/syncing/CMakeLists.txt | 2 +- examples/wave_sim/CMakeLists.txt | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/VERSION b/VERSION index 9fc80f937..1d0ba9ea1 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.3.2 \ No newline at end of file +0.4.0 diff --git a/examples/convolution/CMakeLists.txt b/examples/convolution/CMakeLists.txt index 4bd97aad9..1cbea5429 100644 --- a/examples/convolution/CMakeLists.txt +++ b/examples/convolution/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.13) project(convolution LANGUAGES CXX) -find_package(Celerity 0.3.2 REQUIRED) +find_package(Celerity 0.4.0 REQUIRED) add_executable(convolution convolution.cc) set_property(TARGET convolution PROPERTY CXX_STANDARD 17) diff --git a/examples/distr_io/CMakeLists.txt b/examples/distr_io/CMakeLists.txt index d43655470..49bc51a56 100644 --- a/examples/distr_io/CMakeLists.txt +++ b/examples/distr_io/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.13) project(distr_io LANGUAGES CXX) -find_package(Celerity 0.3.2 REQUIRED) +find_package(Celerity 0.4.0 REQUIRED) find_package(PkgConfig REQUIRED) pkg_search_module(HDF5 REQUIRED IMPORTED_TARGET hdf5-openmpi hdf5-1.12.0 hdf5) diff --git a/examples/hello_world/CMakeLists.txt b/examples/hello_world/CMakeLists.txt index 3fbe8df6c..9d567c1d9 100644 --- a/examples/hello_world/CMakeLists.txt +++ b/examples/hello_world/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.13) project(hello_world LANGUAGES CXX) -find_package(Celerity 0.3.2 REQUIRED) +find_package(Celerity 0.4.0 REQUIRED) add_executable(hello_world hello_world.cc) set_property(TARGET hello_world PROPERTY CXX_STANDARD 17) diff --git a/examples/matmul/CMakeLists.txt b/examples/matmul/CMakeLists.txt index c64919efc..797d5b50f 100644 --- a/examples/matmul/CMakeLists.txt +++ b/examples/matmul/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.13) project(matmul LANGUAGES CXX) -find_package(Celerity 0.3.2 REQUIRED) +find_package(Celerity 0.4.0 REQUIRED) add_executable(matmul matmul.cc) set_property(TARGET matmul PROPERTY CXX_STANDARD 17) diff --git a/examples/reduction/CMakeLists.txt b/examples/reduction/CMakeLists.txt index 33a929c49..c46d51134 100644 --- a/examples/reduction/CMakeLists.txt +++ b/examples/reduction/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.13) project(syncing LANGUAGES CXX) -find_package(Celerity 0.3.2 REQUIRED) +find_package(Celerity 0.4.0 REQUIRED) if (NOT CELERITY_FEATURE_SCALAR_REDUCTIONS) message(SEND_ERROR "Your Celerity installation does not support reductions. Skip this example.") endif () diff --git a/examples/syncing/CMakeLists.txt b/examples/syncing/CMakeLists.txt index 3633729e5..cc03360cc 100644 --- a/examples/syncing/CMakeLists.txt +++ b/examples/syncing/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.13) project(syncing LANGUAGES CXX) -find_package(Celerity 0.3.2 REQUIRED) +find_package(Celerity 0.4.0 REQUIRED) add_executable(syncing syncing.cc) set_property(TARGET syncing PROPERTY CXX_STANDARD 17) diff --git a/examples/wave_sim/CMakeLists.txt b/examples/wave_sim/CMakeLists.txt index 3f011e994..087e17a09 100644 --- a/examples/wave_sim/CMakeLists.txt +++ b/examples/wave_sim/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.13) project(wave_sim LANGUAGES CXX) -find_package(Celerity 0.3.2 REQUIRED) +find_package(Celerity 0.4.0 REQUIRED) add_executable(wave_sim wave_sim.cc) set_property(TARGET wave_sim PROPERTY CXX_STANDARD 17)