diff --git a/CHANGELOG.md b/CHANGELOG.md index 3916645..ccd4b04 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,9 @@ 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. -## [Unreleased] +## [2.0.1] - 2026-01-13 + +- fix build issues with -fmodules flag ## [2.0.0] - 2025-12-02 diff --git a/src/version.hpp b/src/version.hpp index 0bb8ab0..bdb9e12 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 0 +#define EPPOCLIENT_VERSION_PATCH 1 #define EPPOCLIENT_VERSION \ (EPPO_STRINGIFY(EPPOCLIENT_VERSION_MAJOR) "." EPPO_STRINGIFY( \ EPPOCLIENT_VERSION_MINOR) "." EPPO_STRINGIFY(EPPOCLIENT_VERSION_PATCH))