From: falcovorbis <fal...@us...> - 2024-11-05 03:28:28
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "A pseudo Operating System for the Dreamcast.". The branch, v2.1.0 has been updated via 22f4385da4e9767bda60460e468a5d634e71d813 (commit) via b8ff0fce6f109e8aa8a0dbe81cbd46d25acb191d (commit) from 52140509f51a9d262ea75353f2eb0f7e18c2ec6b (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 22f4385da4e9767bda60460e468a5d634e71d813 Author: Andy Barajas <and...@gm...> Date: Mon Nov 4 19:15:43 2024 -0800 Bump tag to 1 (#845) commit b8ff0fce6f109e8aa8a0dbe81cbd46d25acb191d Author: Andy Barajas <and...@gm...> Date: Mon Nov 4 19:11:34 2024 -0800 Fix versioning (#844) ----------------------------------------------------------------------- Summary of changes: include/kos/version.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/include/kos/version.h b/include/kos/version.h index 431a3430..9b2cb1d9 100644 --- a/include/kos/version.h +++ b/include/kos/version.h @@ -99,7 +99,7 @@ #define KOS_VERSION_MAJOR 2 /**< KOS's current major revision number. */ #define KOS_VERSION_MINOR 1 /**< KOS's current minor revision number. */ -#define KOS_VERSION_PATCH 0 /**< KOS's current patch revision number. */ +#define KOS_VERSION_PATCH 1 /**< KOS's current patch revision number. */ /** KOS's current version as an integer ID. */ #define KOS_VERSION \ @@ -249,7 +249,7 @@ \returns Packed version identifier. */ #define KOS_VERSION_MAKE(major, minor, patch) \ - ((kos_version_t)((major) << 16) | ((minor) << 8) | (patch)) + (((major) << 16) | ((minor) << 8) | (patch)) /** Creates a version string from its constituents. @@ -305,7 +305,7 @@ \retval false The given version is at or below \p version. */ #define KOS_VERSION_MAKE_ABOVE(major, minor, patch, version) \ - (KOS_VERSION_MAKE_COMPARISON(major, minor, patch, >, version)) + (KOS_VERSION_MAKE_COMPARISON(major, minor, patch, <, version)) /** Creates a minimum version check. @@ -323,7 +323,7 @@ \retval false The given version is below \p version. */ #define KOS_VERSION_MAKE_MIN(major, minor, patch, version) \ - (KOS_VERSION_MAKE_COMPARISON(major, minor, patch, >=, version)) + (KOS_VERSION_MAKE_COMPARISON(major, minor, patch, <=, version)) /** Creates an exact version check. @@ -360,7 +360,7 @@ */ #define KOS_VERSION_MAKE_MAX(major, minor, patch, version) \ - (KOS_VERSION_MAKE_COMPARISON(major, minor, patch, <=, version)) + (KOS_VERSION_MAKE_COMPARISON(major, minor, patch, >=, version)) /** Creates a check for being below a given version. @@ -378,7 +378,7 @@ \retval false The given version is at or above \p version. */ #define KOS_VERSION_MAKE_BELOW(major, minor, patch, version) \ - (KOS_VERSION_MAKE_COMPARISON(major, minor, patch, <, version)) + (KOS_VERSION_MAKE_COMPARISON(major, minor, patch, >, version)) /** @} */ /** \cond INTERNAL */ hooks/post-receive -- A pseudo Operating System for the Dreamcast. |