Skip to content

Commit

Permalink
[Core] Updated version number to 0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aoineko-fr committed Dec 18, 2023
1 parent 0286a2b commit c11349c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions engine/src/core.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@

// Library version
#define VERSION_MAJOR (u16)0 // 4-bits (0-15)
#define VERSION_MINOR (u16)11 // 6-bits (0-63)
#define VERSION_PATCH (u16)2 // 6-bits (0-63)
#define VERSION_MINOR (u16)12 // 6-bits (0-63)
#define VERSION_PATCH (u16)0 // 6-bits (0-63)
#define VERSION(a, b, c) ((((a) & 0x0F) << 12) | (((b) & 0x3F) << 6) | ((c) & 0x3F))
#define VERSION_CURRENT VERSION(VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH)

Expand Down

0 comments on commit c11349c

Please sign in to comment.