Skip to content

Commit 63b23d0

Browse files
release 1.0.2
1 parent 89272d1 commit 63b23d0

3 files changed

Lines changed: 7 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff 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

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ cmake_minimum_required(VERSION 3.10)
55
if(${CMAKE_VERSION} VERSION_LESS 3.12)
66
project(
77
Htool
8-
VERSION 1.0.1
8+
VERSION 1.0.2
99
LANGUAGES CXX)
1010
else()
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)

include/htool/htool_version.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
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)))

0 commit comments

Comments
 (0)