From 882123cdd9c6152e0c04c8a386a769e53f56b6d9 Mon Sep 17 00:00:00 2001 From: John Freeman Date: Sat, 2 Nov 2024 14:54:09 -0500 Subject: [PATCH] Bump version to 1.1.3 --- CMakeLists.txt | 2 +- README.md | 2 +- conanfile.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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'