Skip to content

Commit 1a5ef37

Browse files
authored
Prepare v3.1.1 (#73)
1 parent c0f3763 commit 1a5ef37

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# Changes
2+
## Version 3.1.1 - 2025-07-28
3+
Same as v3.1.0, but with updated version numbers.
4+
25
## Version 3.1.0 - 2025-07-18
36
### New Features
47
- Support SWMR mode. (#68) Thanks to @radistmorse

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.13)
22
cmake_policy(VERSION 3.13)
33

4-
project(HighFive VERSION 3.0.0)
4+
project(HighFive VERSION 3.1.1)
55

66
# Configure HighFive
77
# ------------------

include/highfive/H5Version.hpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
#pragma once
1010

1111
#define HIGHFIVE_VERSION_MAJOR 3
12-
#define HIGHFIVE_VERSION_MINOR 0
13-
#define HIGHFIVE_VERSION_PATCH 0
12+
#define HIGHFIVE_VERSION_MINOR 1
13+
#define HIGHFIVE_VERSION_PATCH 1
1414

1515
/** \brief Concatenated representation of the HighFive version.
1616
*
@@ -24,10 +24,10 @@
2424
* std::cout << STRINGIFY_VALUE(HIGHFIVE_VERSION) << "\n";
2525
* \endcode
2626
*/
27-
#define HIGHFIVE_VERSION 3.0.0
27+
#define HIGHFIVE_VERSION 3.1.1
2828

2929
/** \brief String representation of the HighFive version.
3030
*
3131
* \warning This macro only exists from 2.7.1 onwards.
3232
*/
33-
#define HIGHFIVE_VERSION_STRING "3.0.0"
33+
#define HIGHFIVE_VERSION_STRING "3.1.1"

0 commit comments

Comments
 (0)