Skip to content

Commit

Permalink
[Core] Update version to 1.0.0 (RC)
Browse files Browse the repository at this point in the history
  • Loading branch information
aoineko-fr committed Jan 16, 2024
1 parent 6cc1db4 commit 313f76a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions engine/src/core.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
#pragma once

// Library version
#define VERSION_MAJOR (u16)0 // 4-bits (0-15)
#define VERSION_MINOR (u16)12 // 6-bits (0-63)
#define VERSION_PATCH (u16)7 // 6-bits (0-63)
#define VERSION_MAJOR (u16)1 // 4-bits (0-15)
#define VERSION_MINOR (u16)0 // 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 313f76a

Please sign in to comment.