From 989545ff8d0b368d2f3f428357ec1565431d6ab7 Mon Sep 17 00:00:00 2001 From: John Freeman Date: Wed, 6 Nov 2024 18:26:26 -0600 Subject: [PATCH] Bump version to 1.2.1 --- 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 8652591..70c2851 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.21) -project(cupcake.cmake VERSION 1.2.0 LANGUAGES NONE) +project(cupcake.cmake VERSION 1.2.1 LANGUAGES NONE) include(CMakePackageConfigHelpers) list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/cmake") diff --git a/README.md b/README.md index f2fc08f..5778f13 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,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.2.0'] +requires = ['cupcake.cmake/1.2.1'] ``` [^1]: The [`CMakeDeps`][CMakeDeps] generator will [not generate][6] diff --git a/conanfile.py b/conanfile.py index 79a8c01..fd9b24e 100644 --- a/conanfile.py +++ b/conanfile.py @@ -3,7 +3,7 @@ class Cupcake(ConanFile): name = 'cupcake.cmake' - version = '1.2.0' + version = '1.2.1' default_user = 'github' default_channel = 'thejohnfreeman'