Skip to content

Commit

Permalink
Merge branch 'stable' into SPEX-3.1.x
Browse files Browse the repository at this point in the history
  • Loading branch information
DrTimothyAldenDavis authored Mar 26, 2024
2 parents 9f77710 + 025cf31 commit 825bac4
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions SPEX/Include/SPEX.h
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,20 @@ SPEX_info ;
// SPEX Version, continued
//------------------------------------------------------------------------------

// Current version of the code
#define SPEX_DATE "Jul 26, 2023"
#define SPEX_VERSION_STRING "3.0.0"
#define SPEX_VERSION_MAJOR 3
#define SPEX_VERSION_MINOR 0
#define SPEX_VERSION_SUB 0

#define SPEX_VERSION_NUMBER(major,minor,sub) \
(((major)*1000ULL + (minor))*1000ULL + (sub))
#define SPEX_VERSION \
SPEX_VERSION_NUMBER (SPEX_VERSION_MAJOR, \
SPEX_VERSION_MINOR, \
SPEX_VERSION_SUB)

SPEX_info SPEX_version
(
int version [3], // SPEX major, minor, and sub version
Expand Down

0 comments on commit 825bac4

Please sign in to comment.