From 6f09e2383a80d512071148cf9a7b6e97a9dc9b19 Mon Sep 17 00:00:00 2001 From: John Freeman Date: Sat, 5 Oct 2024 19:05:56 -0500 Subject: [PATCH] Bump version to 1.1.2 --- 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 e465784..6a768d9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.21) -project(cupcake.cmake VERSION 1.1.1 LANGUAGES NONE) +project(cupcake.cmake VERSION 1.1.2 LANGUAGES NONE) include(CMakePackageConfigHelpers) list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/cmake") diff --git a/README.md b/README.md index c1c6201..873f90d 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.1'] +requires = ['cupcake.cmake/1.1.2'] ``` [^1]: The [`CMakeDeps`][CMakeDeps] generator will [not generate][6] diff --git a/conanfile.py b/conanfile.py index 1631c16..9fc4126 100644 --- a/conanfile.py +++ b/conanfile.py @@ -3,7 +3,7 @@ class Cupcake(ConanFile): name = 'cupcake.cmake' - version = '1.1.1' + version = '1.1.2' default_user = 'github' default_channel = 'thejohnfreeman'