diff --git a/CMakeLists.txt b/CMakeLists.txt index 6a768d9..db29f89 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.21) -project(cupcake.cmake VERSION 1.1.2 LANGUAGES NONE) +project(cupcake.cmake VERSION 1.1.3 LANGUAGES NONE) include(CMakePackageConfigHelpers) list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/cmake") diff --git a/README.md b/README.md index 873f90d..9f53a14 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ There are a few ways to accomplish that. First, add `cupcake.cmake` as a non-tool[^1] requirement to your Conan recipe: ``` -requires = ['cupcake.cmake/1.1.2'] +requires = ['cupcake.cmake/1.1.3'] ``` [^1]: The [`CMakeDeps`][CMakeDeps] generator will [not generate][6] diff --git a/conanfile.py b/conanfile.py index 9fc4126..7183410 100644 --- a/conanfile.py +++ b/conanfile.py @@ -3,7 +3,7 @@ class Cupcake(ConanFile): name = 'cupcake.cmake' - version = '1.1.2' + version = '1.1.3' default_user = 'github' default_channel = 'thejohnfreeman'