From 7a8f6d01867cd0a4f4ff243c681d20f474201603 Mon Sep 17 00:00:00 2001 From: Werner Henze Date: Wed, 26 Mar 2025 16:48:51 +0100 Subject: [PATCH] Fix version info Just tagging as 4.2.0 is not enough, the version number must be incremented for cmake and in the readme. Compare https://github.com/microsoft/GSL/pull/1163. --- CMakeLists.txt | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b1d24e5..b306dc1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.14...3.16) -project(GSL VERSION 4.1.0 LANGUAGES CXX) +project(GSL VERSION 4.2.0 LANGUAGES CXX) add_library(GSL INTERFACE) add_library(Microsoft.GSL::GSL ALIAS GSL) diff --git a/README.md b/README.md index d896052..d6b251c 100644 --- a/README.md +++ b/README.md @@ -202,7 +202,7 @@ include(FetchContent) FetchContent_Declare(GSL GIT_REPOSITORY "https://github.com/microsoft/GSL" - GIT_TAG "v4.1.0" + GIT_TAG "v4.2.0" GIT_SHALLOW ON )