diff --git a/CHANGELOG.md b/CHANGELOG.md index 4bf72b020..5c357a0f9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ Experimental changelog. Mostly based on [keepachangelog](https://keepachangelog.com/en/1.0.0/) except date format. a-c-f-r-o +## [4.3.17] - 06.09.2023 + +### Fixed + +- Fix to waifu gifts being character limited +- Fixes UserUpdated and UserPresence not correctly ignoring users that are logignored +- Added Trim() to activity names since apparently some activities have trailing spaces. + ## [4.3.16] - 24.05.2023 ### Fixed diff --git a/src/NadekoBot/Services/Impl/StatsService.cs b/src/NadekoBot/Services/Impl/StatsService.cs index e85fb0a6f..68a23bc9c 100644 --- a/src/NadekoBot/Services/Impl/StatsService.cs +++ b/src/NadekoBot/Services/Impl/StatsService.cs @@ -7,7 +7,7 @@ namespace NadekoBot.Services; public sealed class StatsService : IStatsService, IReadyExecutor, INService { - public const string BOT_VERSION = "4.3.16"; + public const string BOT_VERSION = "4.3.17"; public string Author => "Kwoth#2452";