From 3325bbd33d24d1f8f5a0f69e782c92ad5a39a68e Mon Sep 17 00:00:00 2001 From: Werner Henze <34543625+beinhaerter@users.noreply.github.com> Date: Thu, 27 Mar 2025 17:00:24 +0100 Subject: [PATCH] Fix version info (#1202) 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. Co-authored-by: Werner Henze --- 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 )