From e94b4f5a4853bc532751164e95ea7af4925dfbed Mon Sep 17 00:00:00 2001 From: Greg Huels Date: Wed, 14 Jan 2026 12:20:12 -0600 Subject: [PATCH] chore: bump to version 2.0.2 --- CHANGELOG.md | 4 ++++ src/version.hpp | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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))