diff --git a/CMakeLists.txt b/CMakeLists.txt index 5b60c17a..e20f47f0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.14) -project(snitch LANGUAGES CXX VERSION 1.3.0) +project(snitch LANGUAGES CXX VERSION 1.3.1) # Maximum lengths. set(SNITCH_MAX_TEST_CASES 5000 CACHE STRING "Maximum number of test cases in a test application.") @@ -83,6 +83,7 @@ set(SNITCH_INCLUDES ${PROJECT_SOURCE_DIR}/include/snitch/snitch_macros_test_case.hpp ${PROJECT_SOURCE_DIR}/include/snitch/snitch_macros_utility.hpp ${PROJECT_SOURCE_DIR}/include/snitch/snitch_macros_warnings.hpp + ${PROJECT_SOURCE_DIR}/include/snitch/snitch_main.hpp ${PROJECT_SOURCE_DIR}/include/snitch/snitch_matcher.hpp ${PROJECT_SOURCE_DIR}/include/snitch/snitch_registry.hpp ${PROJECT_SOURCE_DIR}/include/snitch/snitch_reporter_catch2_xml.hpp diff --git a/meson.build b/meson.build index e0b7e657..63626d96 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@ project('snitch', 'cpp', default_options: ['cpp_std=c++20', 'default_library=static'], - version: '1.3.0' + version: '1.3.1' ) cpp_arguments = [] diff --git a/tests/install_tests/standalone.cpp b/tests/install_tests/standalone.cpp index a338f8b0..4da4275c 100644 --- a/tests/install_tests/standalone.cpp +++ b/tests/install_tests/standalone.cpp @@ -2,8 +2,7 @@ # define SNITCH_IMPLEMENTATION # include #else -# include -# include +# include #endif TEST_CASE("compiles and runs") {