diff --git a/CHANGELOG.md b/CHANGELOG.md index 06089bc24..d25f93372 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,11 +5,13 @@ Experimental changelog. Mostly based on [keepachangelog](https://keepachangelog. ## Unreleased +## [4.2.7] - 24.06.2022 + ### Changed - New cache abstraction added - - 2 implemenations: redis and memory - - All current bots will stay on redis cache, all new bots will use in-process memory cache + - 2 implemenations: redis and memory + - All current bots will stay on redis cache, all new bots will use **in-process memory cache by default** - This change removes bot's hard dependency on redis - Configurable in `creds.yml` (please read the comments) - You **MUST** use 'redis' if your bot runs on more than 1 shard (2000+ servers) diff --git a/src/NadekoBot/Services/Impl/StatsService.cs b/src/NadekoBot/Services/Impl/StatsService.cs index 8d08a5e8b..ef02c0bdf 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.2.6"; + public const string BOT_VERSION = "4.2.7"; public string Author => "Kwoth#2452";