Skip to content

Commit

Permalink
Prepare v2.10.0. (#1037)
Browse files Browse the repository at this point in the history
* Update CHANGELOG.md

* Update version numbers to 2.10.0.
  • Loading branch information
1uc authored Jul 26, 2024
1 parent 05d6402 commit 4a326f3
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 4 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,21 @@
# Changes
## Version 2.10.0 - 2024-07-26
### New Features
- `read_raw` when reading from pointers. (#928,#940)
- Improve inspector for `T[N]`. (#929)

### Deprecations
Please consult the Migration Guide for details about migrating away from
deprecated features.
- Deprecated `FixedLenStringArray` (#932)
- The overload `read(T*, ...)` has been deprecated, but not `read(T&, ...)`. (#928)

### Improvements
- Improved documentation.

### Bug Fixes
- Fixed a performance bug involving `HyperSlab`s (#1032)

## Version 2.9.0 - 2024-01-25
### New Features
- Add named ctors for scalar and null dataspaces. (#899)
Expand Down
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.9.0)
project(HighFive VERSION 2.10.0)

configure_file(${CMAKE_CURRENT_SOURCE_DIR}/include/highfive/H5Version.hpp.in
${CMAKE_CURRENT_SOURCE_DIR}/include/highfive/H5Version.hpp)
Expand Down
6 changes: 3 additions & 3 deletions include/highfive/H5Version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#pragma once

#define HIGHFIVE_VERSION_MAJOR 2
#define HIGHFIVE_VERSION_MINOR 9
#define HIGHFIVE_VERSION_MINOR 10
#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.9.0
#define HIGHFIVE_VERSION 2.10.0

/** \brief String representation of the HighFive version.
*
* \warning This macro only exists from 2.7.1 onwards.
*/
#define HIGHFIVE_VERSION_STRING "2.9.0"
#define HIGHFIVE_VERSION_STRING "2.10.0"

0 comments on commit 4a326f3

Please sign in to comment.