Skip to content

Commit

Permalink
0.8.1 -> 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
PierreMarchand20 committed Sep 24, 2024
1 parent 02992a6 commit 6e61f86
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ cmake_minimum_required(VERSION 3.10)
if(${CMAKE_VERSION} VERSION_LESS 3.12)
project(
Htool
VERSION 0.8.1
VERSION 0.9.0
LANGUAGES CXX)
else()
project(
Htool
VERSION 0.8.1
VERSION 0.9.0
DESCRIPTION "A header only c++ library that provides Hierarchical matrices."
HOMEPAGE_URL "https://github.com/htool-ddm/htool"
LANGUAGES CXX)
Expand Down
4 changes: 2 additions & 2 deletions include/htool/htool_version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
#define HTOOL_VERSION_HPP

#define HTOOL_VERSION_MAJOR 0
#define HTOOL_VERSION_MINOR 8
#define HTOOL_VERSION_SUBMINOR 1
#define HTOOL_VERSION_MINOR 9
#define HTOOL_VERSION_SUBMINOR 0

#define HTOOL_VERSION_EQ(MAJOR, MINOR, SUBMINOR) \
((HTOOL_VERSION_MAJOR == (MAJOR)) && (HTOOL_VERSION_MINOR == (MINOR)) && (HTOOL_VERSION_SUBMINOR == (SUBMINOR)))
Expand Down

0 comments on commit 6e61f86

Please sign in to comment.