From 144ec79f351094e780c98f8f35b9897fb502941c Mon Sep 17 00:00:00 2001 From: qicosmos Date: Mon, 29 Apr 2024 17:41:33 +0800 Subject: [PATCH 1/2] add version --- iguana/version.hpp | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 iguana/version.hpp diff --git a/iguana/version.hpp b/iguana/version.hpp new file mode 100644 index 00000000..9d212d8f --- /dev/null +++ b/iguana/version.hpp @@ -0,0 +1,8 @@ +#pragma once + +// Note: Update the version when release a new version. + +// YLT_VERSION % 100 is the sub-minor version +// YLT_VERSION / 100 % 1000 is the minor version +// YLT_VERSION / 100000 is the major version +#define IGUANA_VERSION 100004 // 1.0.4 \ No newline at end of file From 7c350c082e51ea87f5a0522cdf28c668c83ea13e Mon Sep 17 00:00:00 2001 From: qicosmos Date: Mon, 29 Apr 2024 17:42:19 +0800 Subject: [PATCH 2/2] update --- iguana/version.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/iguana/version.hpp b/iguana/version.hpp index 9d212d8f..202ea4a3 100644 --- a/iguana/version.hpp +++ b/iguana/version.hpp @@ -2,7 +2,7 @@ // Note: Update the version when release a new version. -// YLT_VERSION % 100 is the sub-minor version -// YLT_VERSION / 100 % 1000 is the minor version -// YLT_VERSION / 100000 is the major version +// IGUANA_VERSION % 100 is the sub-minor version +// IGUANA_VERSION / 100 % 1000 is the minor version +// IGUANA_VERSION / 100000 is the major version #define IGUANA_VERSION 100004 // 1.0.4 \ No newline at end of file