From e62fc628eaa0b317827b694e0a4b04ec4c98bde4 Mon Sep 17 00:00:00 2001 From: Andrei Dabija Date: Wed, 26 Mar 2025 16:18:22 +0200 Subject: [PATCH] add release notes and bump version --- CHANGELOG.md | 11 +++++++++++ source/gameanalytics/GACommon.h | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4329e0f3..2e866e80 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## 4.1.1 + +### Added + +- added `getUserId()` and `getExternalUserId()` functions. + +### Fixed + +- fixed linux compilations issues with clang 18.X version +- fixed progression event will now correctly send value + ## 4.1.0 ### Added diff --git a/source/gameanalytics/GACommon.h b/source/gameanalytics/GACommon.h index e761edb8..45467e2b 100644 --- a/source/gameanalytics/GACommon.h +++ b/source/gameanalytics/GACommon.h @@ -85,7 +85,7 @@ namespace gameanalytics class GAState; } - constexpr const char* GA_VERSION_STR = "cpp 4.1.0"; + constexpr const char* GA_VERSION_STR = "cpp 4.1.1"; constexpr int MAX_CUSTOM_FIELDS_COUNT = 50; constexpr int MAX_CUSTOM_FIELDS_KEY_LENGTH = 64;