Skip to content

Commit

Permalink
Update CHANGELOG for v3.0.0-beta2. (#1058)
Browse files Browse the repository at this point in the history
  • Loading branch information
1uc authored Dec 4, 2024
1 parent 597fbab commit ddcf632
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changes
## Version 3.0.0-beta - 2024-07-16
## Version 3.0.0-beta2 - 2024-12-04
### New Features
- Support `boost::span`. (#1025)

### Bug Fix
- Fix for not-quite null-terminated, fixed-length strings. (#1056)
- Guard target creation in `*Config.cmake`. (#1053)

## Version 3.0.0-beta1 - 2024-07-16
This version is a major one and is breaking some usage compare to v2.
Read the migration guide from the documentation: https://bluebrain.github.io/HighFive/md__2home_2runner_2work_2_high_five_2_high_five_2doc_2migration__guide.html

Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.13)
cmake_policy(VERSION 3.13)

project(HighFive VERSION 3.0.0)
set(HIGHFIVE_VERSION_PRERELEASE 1)
set(HIGHFIVE_VERSION_PRERELEASE 2)

# Configure HighFive
# ------------------
Expand Down
4 changes: 2 additions & 2 deletions include/highfive/H5Version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
#define HIGHFIVE_VERSION_PATCH 0

// Undefined for regular releases.
#define HIGHFIVE_VERSION_PRERELEASE 1
#define HIGHFIVE_VERSION_PRERELEASE 2

/** \brief Concatenated representation of the HighFive version.
*
Expand All @@ -33,4 +33,4 @@
*
* \warning This macro only exists from 2.7.1 onwards.
*/
#define HIGHFIVE_VERSION_STRING "3.0.0-beta1"
#define HIGHFIVE_VERSION_STRING "3.0.0-beta2"

0 comments on commit ddcf632

Please sign in to comment.