Upped version to 4.2.7, Updated CHANGELOG.md

This commit is contained in:
Kwoth
2022-06-24 10:47:27 +02:00
parent dc846965ae
commit bdde065209
2 changed files with 5 additions and 3 deletions

View File

@@ -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)

View File

@@ -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";