Skip to content

Commit 003efeb

Browse files
authored
Prepare 3.0.0-beta3. (#62)
* Update CHANGELOG. * Update version numbers. * Update AUTHORS.txt
1 parent 43a5c52 commit 003efeb

File tree

4 files changed

+28
-3
lines changed

4 files changed

+28
-3
lines changed

AUTHORS.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ Chris Byrohl
77
Chris De Grendele
88
@contre
99
Daniel Nachbaur
10+
Dennis Gläser
1011
Dmitri Bichko
1112
@eudoxos
1213
Fernando L. Pereira

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,28 @@
11
# Changes
2+
## Version 3.0.0-beta3 - 2025-06-20
3+
### New Features
4+
- Allow Attributes on Groups via Easy. (#8)
5+
- cmake: export into build directory (#27) Thanks @dglaeser.
6+
- xtensor: Make HighFive compatible with 0.26. (#36)
7+
8+
### Bug Fix
9+
- Catch using `.back()` on empty vector. (#11)
10+
- Fix error condition h5p_get_file_space_strategy. (#45)
11+
12+
### Improvements
13+
- Numerous improvements to the CI code.
14+
- Shorter README.md (#20)
15+
- Numerous code quality improvements. (#46, #50, #51, #54, #55)
16+
- Eliminate zero-division warning. (#44)
17+
- Avoid protected member variables. (#53)
18+
- Silence overflow warning. (#56)
19+
- Cleaner use of noexcept. (#57)
20+
- Cleaner use of explicit ctors. (#58)
21+
22+
### Removed
23+
- Removed the C++20 concept for property lists. (#60)
24+
- Removed ObjectInfo::getAddress. (#61)
25+
226
## Version 3.0.0-beta2 - 2024-12-04
327
### New Features
428
- Support `boost::span`. (#1025)

CMakeLists.txt

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

44
project(HighFive VERSION 3.0.0)
5-
set(HIGHFIVE_VERSION_PRERELEASE 2)
5+
set(HIGHFIVE_VERSION_PRERELEASE 3)
66

77
# Configure HighFive
88
# ------------------

include/highfive/H5Version.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
#define HIGHFIVE_VERSION_PATCH 0
1414

1515
// Undefined for regular releases.
16-
#define HIGHFIVE_VERSION_PRERELEASE 2
16+
#define HIGHFIVE_VERSION_PRERELEASE 3
1717

1818
/** \brief Concatenated representation of the HighFive version.
1919
*
@@ -33,4 +33,4 @@
3333
*
3434
* \warning This macro only exists from 2.7.1 onwards.
3535
*/
36-
#define HIGHFIVE_VERSION_STRING "3.0.0-beta2"
36+
#define HIGHFIVE_VERSION_STRING "3.0.0-beta3"

0 commit comments

Comments
 (0)