Skip to content

Commit d950bd6

Browse files
gyrovorbisQuzarDC
authored andcommitted
Bumping KOS version on master branch to 2.3.0.
- We introduced an API-breaking change to genwait(), which makes it now take one less argument on master. - The problem is that master is versioned at 2.2.2, which has the genwait() change, but SO IS the v2.2.x branch, which does NOT have the genwait change. - We need to introduce a minor version bump into master to be able to version properly within our codebase (Ocarina of Time) like so: static void WaitForVBlank(void) { /* +3 = 20 FPS (matching N64 original), +2 = 30, +1 = 60, +0 = uncapped */ while (sVblCounter < sLastVbl + 3) genwait_wait((void*)&sVblCounter, NULL, 0, NULL); genwait_wait((void*)&sVblCounter, NULL, 0); sLastVbl = sVblCounter; } ** This version bump just means the next tagged release will be v2.3.0, but we are not actually tagging that release yet, just bumping the version here. **
1 parent 85f8485 commit d950bd6

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

include/kos/version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,8 @@
9898
*/
9999

100100
#define KOS_VERSION_MAJOR 2 /**< KOS's current major revision number. */
101-
#define KOS_VERSION_MINOR 2 /**< KOS's current minor revision number. */
102-
#define KOS_VERSION_PATCH 2 /**< KOS's current patch revision number. */
101+
#define KOS_VERSION_MINOR 3 /**< KOS's current minor revision number. */
102+
#define KOS_VERSION_PATCH 0 /**< KOS's current patch revision number. */
103103

104104
/** KOS's current version as an integer ID. */
105105
#define KOS_VERSION \

0 commit comments

Comments
 (0)