Skip to content

Commit

Permalink
New version number
Browse files Browse the repository at this point in the history
  • Loading branch information
alkino committed Nov 1, 2023
1 parent ed539c7 commit 4535cd8
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
1 change: 1 addition & 0 deletions doc/developer_guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion doc/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions include/highfive/H5Version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*
Expand All @@ -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"

0 comments on commit 4535cd8

Please sign in to comment.