diff --git a/CMakeLists.txt b/CMakeLists.txt index b321312..9d67ff7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -25,7 +25,7 @@ project(cmkr LANGUAGES CXX VERSION - 0.2.7 + 0.2.8 DESCRIPTION "CMakeLists generator from TOML" ) diff --git a/cmake.toml b/cmake.toml index 5e20657..dac3d01 100644 --- a/cmake.toml +++ b/cmake.toml @@ -4,7 +4,7 @@ cmkr-include = false [project] name = "cmkr" -version = "0.2.7" +version = "0.2.8" description = "CMakeLists generator from TOML" languages = ["CXX"] subdirs = ["third_party", "tests"] diff --git a/cmake/cmkr.cmake b/cmake/cmkr.cmake index 8b61d26..91dcb4b 100644 --- a/cmake/cmkr.cmake +++ b/cmake/cmkr.cmake @@ -2,7 +2,7 @@ include_guard() # Change these defaults to point to your infrastructure if desired set(CMKR_REPO "https://github.com/build-cpp/cmkr" CACHE STRING "cmkr git repository" FORCE) -set(CMKR_TAG "v0.2.7" CACHE STRING "cmkr git tag (this needs to be available forever)" FORCE) +set(CMKR_TAG "v0.2.8" CACHE STRING "cmkr git tag (this needs to be available forever)" FORCE) # To bootstrap/generate a cmkr project: cmake -P cmkr.cmake if(CMAKE_SCRIPT_MODE_FILE)