From 3775e3d5eb210e055a57b5869d7f5a4b3251fc65 Mon Sep 17 00:00:00 2001 From: Luc Grosheintz Date: Wed, 9 Nov 2022 09:40:04 +0100 Subject: [PATCH] Fix version in `CMakeLists.txt`. (#642) --- CHANGELOG.md | 4 ++++ CMakeLists.txt | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bfa333abc..75264ac0a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## Version 2.6.1 - 2022-11-08 +### Bug Fix + - Version bump in `CMakeLists.txt`. + ## Version 2.6.0 - 2022-11-08 ### New Features - Enable page buffered reading (#639). diff --git a/CMakeLists.txt b/CMakeLists.txt index ec54a1d60..6ae73cccd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,7 +5,7 @@ else() cmake_policy(VERSION 3.13) endif() -project(HighFive VERSION 2.5.0) +project(HighFive VERSION 2.6.1) configure_file(${CMAKE_CURRENT_SOURCE_DIR}/include/highfive/H5Version.hpp.in ${CMAKE_CURRENT_BINARY_DIR}/include/highfive/H5Version.hpp)