diff --git a/CMakeLists.txt b/CMakeLists.txt index bc72a73..4e7bfb4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -25,7 +25,7 @@ project(cmkr LANGUAGES CXX VERSION - 0.2.5 + 0.2.6 DESCRIPTION "CMakeLists generator from TOML" ) diff --git a/cmake.toml b/cmake.toml index a69fbcb..a440a99 100644 --- a/cmake.toml +++ b/cmake.toml @@ -4,7 +4,7 @@ cmkr-include = false [project] name = "cmkr" -version = "0.2.5" +version = "0.2.6" description = "CMakeLists generator from TOML" languages = ["CXX"] subdirs = ["third_party", "tests"] diff --git a/cmake/cmkr.cmake b/cmake/cmkr.cmake index 9ec73a0..28aadfc 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.5" CACHE STRING "cmkr git tag (this needs to be available forever)" FORCE) +set(CMKR_TAG "v0.2.6" 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)