Skip to content
This repository was archived by the owner on Feb 26, 2025. It is now read-only.

Commit 4a326f3

Browse files
authored
Prepare v2.10.0. (#1037)
* Update CHANGELOG.md * Update version numbers to 2.10.0.
1 parent 05d6402 commit 4a326f3

File tree

3 files changed

+21
-4
lines changed

3 files changed

+21
-4
lines changed

CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,21 @@
11
# Changes
2+
## Version 2.10.0 - 2024-07-26
3+
### New Features
4+
- `read_raw` when reading from pointers. (#928,#940)
5+
- Improve inspector for `T[N]`. (#929)
6+
7+
### Deprecations
8+
Please consult the Migration Guide for details about migrating away from
9+
deprecated features.
10+
- Deprecated `FixedLenStringArray` (#932)
11+
- The overload `read(T*, ...)` has been deprecated, but not `read(T&, ...)`. (#928)
12+
13+
### Improvements
14+
- Improved documentation.
15+
16+
### Bug Fixes
17+
- Fixed a performance bug involving `HyperSlab`s (#1032)
18+
219
## Version 2.9.0 - 2024-01-25
320
### New Features
421
- Add named ctors for scalar and null dataspaces. (#899)

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ else()
55
cmake_policy(VERSION 3.13)
66
endif()
77

8-
project(HighFive VERSION 2.9.0)
8+
project(HighFive VERSION 2.10.0)
99

1010
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/include/highfive/H5Version.hpp.in
1111
${CMAKE_CURRENT_SOURCE_DIR}/include/highfive/H5Version.hpp)

include/highfive/H5Version.hpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#pragma once
1010

1111
#define HIGHFIVE_VERSION_MAJOR 2
12-
#define HIGHFIVE_VERSION_MINOR 9
12+
#define HIGHFIVE_VERSION_MINOR 10
1313
#define HIGHFIVE_VERSION_PATCH 0
1414

1515
/** \brief Concatenated representation of the HighFive version.
@@ -24,10 +24,10 @@
2424
* std::cout << STRINGIFY_VALUE(HIGHFIVE_VERSION) << "\n";
2525
* \endcode
2626
*/
27-
#define HIGHFIVE_VERSION 2.9.0
27+
#define HIGHFIVE_VERSION 2.10.0
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 "2.9.0"
33+
#define HIGHFIVE_VERSION_STRING "2.10.0"

0 commit comments

Comments
 (0)