diff --git a/CHANGELOG.md b/CHANGELOG.md index ccd4b04..99879b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 **Note**: Semantic Versioning applies to source-level compatibility only. No guarantees are made regarding Application Binary Interface (ABI) stability. When upgrading versions, always recompile your application against the new SDK version. Avoid mixing object files or libraries compiled against different SDK versions. +## [2.0.2] - 2026-01-14 + +- fix time_utils fmodules build + ## [2.0.1] - 2026-01-13 - fix build issues with -fmodules flag diff --git a/src/version.hpp b/src/version.hpp index bdb9e12..3a33f8b 100644 --- a/src/version.hpp +++ b/src/version.hpp @@ -6,7 +6,7 @@ #define EPPOCLIENT_VERSION_MAJOR 2 #define EPPOCLIENT_VERSION_MINOR 0 -#define EPPOCLIENT_VERSION_PATCH 1 +#define EPPOCLIENT_VERSION_PATCH 2 #define EPPOCLIENT_VERSION \ (EPPO_STRINGIFY(EPPOCLIENT_VERSION_MAJOR) "." EPPO_STRINGIFY( \ EPPOCLIENT_VERSION_MINOR) "." EPPO_STRINGIFY(EPPOCLIENT_VERSION_PATCH))