From bdde06520963144d86d1cf6eb622f9aa4b3642cd Mon Sep 17 00:00:00 2001 From: Kwoth Date: Fri, 24 Jun 2022 10:47:27 +0200 Subject: [PATCH] Upped version to 4.2.7, Updated CHANGELOG.md --- CHANGELOG.md | 6 ++++-- src/NadekoBot/Services/Impl/StatsService.cs | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) 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";