diff options
-rw-r--r-- | CHANGELOG.txt | 4 | ||||
-rw-r--r-- | CMakeLists.txt | 2 | ||||
-rw-r--r-- | agbsum/include/agbsum.h | 2 |
3 files changed, 6 insertions, 2 deletions
diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 269bdea..50a94d7 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,7 @@ +| 5 + +- Fix version number not being updated; + | 4 - Fix wrong license notice type being used; diff --git a/CMakeLists.txt b/CMakeLists.txt index d335924..0d02993 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,7 +6,7 @@ cmake_minimum_required( project( agbsum VERSION - 2 + 5 DESCRIPTION "GBA ROM header checksum patcher." HOMEPAGE_URL diff --git a/agbsum/include/agbsum.h b/agbsum/include/agbsum.h index 1d49ace..19333fc 100644 --- a/agbsum/include/agbsum.h +++ b/agbsum/include/agbsum.h @@ -21,7 +21,7 @@ #define nullptr NULL #define typeof __typeof__ -constexpr uint_least64_t agbsum_ver = 0x2u; +constexpr uint_least64_t agbsum_ver = 0x5u; constexpr size_t agbsum_romstart = 0xA0u; |