From ede97c8d51905c1640038561d12d41da173012ac Mon Sep 17 00:00:00 2001 From: Luc Grosheintz Date: Tue, 3 Dec 2024 15:31:35 +0100 Subject: [PATCH] Update version number for 2.10.1. (#1068) --- CMakeLists.txt | 2 +- include/highfive/H5Version.hpp | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ca5decdca..384fb02f8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,7 +5,7 @@ else() cmake_policy(VERSION 3.13) endif() -project(HighFive VERSION 2.10.0) +project(HighFive VERSION 2.10.1) configure_file(${CMAKE_CURRENT_SOURCE_DIR}/include/highfive/H5Version.hpp.in ${CMAKE_CURRENT_SOURCE_DIR}/include/highfive/H5Version.hpp) diff --git a/include/highfive/H5Version.hpp b/include/highfive/H5Version.hpp index 002500961..15a32822c 100644 --- a/include/highfive/H5Version.hpp +++ b/include/highfive/H5Version.hpp @@ -10,7 +10,7 @@ #define HIGHFIVE_VERSION_MAJOR 2 #define HIGHFIVE_VERSION_MINOR 10 -#define HIGHFIVE_VERSION_PATCH 0 +#define HIGHFIVE_VERSION_PATCH 1 /** \brief Concatenated representation of the HighFive version. * @@ -24,10 +24,10 @@ * std::cout << STRINGIFY_VALUE(HIGHFIVE_VERSION) << "\n"; * \endcode */ -#define HIGHFIVE_VERSION 2.10.0 +#define HIGHFIVE_VERSION 2.10.1 /** \brief String representation of the HighFive version. * * \warning This macro only exists from 2.7.1 onwards. */ -#define HIGHFIVE_VERSION_STRING "2.10.0" +#define HIGHFIVE_VERSION_STRING "2.10.1"