From 4535cd8279c814c49e4c73b83e24ee164dfc7ae3 Mon Sep 17 00:00:00 2001 From: Nicolas Cornu Date: Wed, 1 Nov 2023 10:11:29 +0100 Subject: [PATCH] New version number --- CMakeLists.txt | 2 +- doc/developer_guide.md | 1 + doc/installation.md | 2 +- include/highfive/H5Version.hpp | 8 ++++---- 4 files changed, 7 insertions(+), 6 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 867981020..af274d9e2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,7 +5,7 @@ else() cmake_policy(VERSION 3.13) endif() -project(HighFive VERSION 2.7.1) +project(HighFive VERSION 2.8.0) configure_file(${CMAKE_CURRENT_SOURCE_DIR}/include/highfive/H5Version.hpp.in ${CMAKE_CURRENT_SOURCE_DIR}/include/highfive/H5Version.hpp) diff --git a/doc/developer_guide.md b/doc/developer_guide.md index 44ee0fd00..3017289b5 100644 --- a/doc/developer_guide.md +++ b/doc/developer_guide.md @@ -57,6 +57,7 @@ your changes.) Before releasing a new version perform the following: * Update `CHANGELOG.md` and `AUTHORS.txt` as required. +* Update `CMakeLists.txt` and `include/highfive/H5Version.hpp`. * Follow semantic versioning when deciding the next version number. * Check that [HighFive-testing](https://github.com/BlueBrain/HighFive-testing/actions) ran diff --git a/doc/installation.md b/doc/installation.md index 808e34532..41521bba5 100644 --- a/doc/installation.md +++ b/doc/installation.md @@ -202,7 +202,7 @@ install. The detailed instructions would be git clone --recursive https://github.com/BlueBrain/HighFive.git cd HighFive - git checkout v2.7.1 + git checkout v2.8.0 If it complains that Catch is missing, you forgot the `--recursive`. To fix this you type diff --git a/include/highfive/H5Version.hpp b/include/highfive/H5Version.hpp index 49b0e8016..dc238432c 100644 --- a/include/highfive/H5Version.hpp +++ b/include/highfive/H5Version.hpp @@ -9,8 +9,8 @@ #pragma once #define HIGHFIVE_VERSION_MAJOR 2 -#define HIGHFIVE_VERSION_MINOR 7 -#define HIGHFIVE_VERSION_PATCH 1 +#define HIGHFIVE_VERSION_MINOR 8 +#define HIGHFIVE_VERSION_PATCH 0 /** \brief Concatenated representation of the HighFive version. * @@ -24,10 +24,10 @@ * std::cout << STRINGIFY_VALUE(HIGHFIVE_VERSION) << "\n"; * \endcode */ -#define HIGHFIVE_VERSION 2.7.1 +#define HIGHFIVE_VERSION 2.8.0 /** \brief String representation of the HighFive version. * * \warning This macro only exists from 2.7.1 onwards. */ -#define HIGHFIVE_VERSION_STRING "2.7.1" +#define HIGHFIVE_VERSION_STRING "2.8.0"