File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -32,6 +32,10 @@ All notable changes to this project will be documented in this file.
3232
3333### Fixed
3434
35+ ## [ 1.0.2] - 2026-02-14
36+
37+ ### Fixed
38+
3539- Fix execution header include, PR #77
3640- Fix wrong ordering of eigenvalues in solve_EVP_3 in some specific cases, PR #76
3741
Original file line number Diff line number Diff line change @@ -5,12 +5,12 @@ cmake_minimum_required(VERSION 3.10)
55if (${CMAKE_VERSION} VERSION_LESS 3.12)
66 project (
77 Htool
8- VERSION 1.0.1
8+ VERSION 1.0.2
99 LANGUAGES CXX )
1010else ()
1111 project (
1212 Htool
13- VERSION 1.0.1
13+ VERSION 1.0.2
1414 DESCRIPTION "A header only c++ library that provides Hierarchical matrices."
1515 HOMEPAGE_URL "https://github.com/htool-ddm/htool"
1616 LANGUAGES CXX )
Original file line number Diff line number Diff line change 33
44#define HTOOL_VERSION_MAJOR 1
55#define HTOOL_VERSION_MINOR 0
6- #define HTOOL_VERSION_SUBMINOR 1
6+ #define HTOOL_VERSION_SUBMINOR 2
77
88#define HTOOL_VERSION_EQ (MAJOR, MINOR, SUBMINOR ) \
99 ((HTOOL_VERSION_MAJOR == (MAJOR)) && (HTOOL_VERSION_MINOR == (MINOR)) && (HTOOL_VERSION_SUBMINOR == (SUBMINOR)))
You can’t perform that action at this time.
0 commit comments