diff --git a/CHANGELOG.md b/CHANGELOG.md index 9bb5f4c31..476fca58d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,9 +2,14 @@ Experimental changelog. Mostly based on [keepachangelog](https://keepachangelog.com/en/1.0.0/) except date format. a-c-f-r-o -## Unreleased +## [3.0.12] = 06.01.2021 -- +### Fixed +- `.smch` Fixed +- `.trans` command will now work properly with capitilized language names +- Ban message color with plain text fixed +- Fixed some grpc coordinator bugs +- Fixed a string in `.xpex` ## [3.0.11] - 17.12.2021 diff --git a/src/NadekoBot/Services/Impl/StatsService.cs b/src/NadekoBot/Services/Impl/StatsService.cs index 3cb9dde88..5d6d37428 100644 --- a/src/NadekoBot/Services/Impl/StatsService.cs +++ b/src/NadekoBot/Services/Impl/StatsService.cs @@ -20,7 +20,7 @@ namespace NadekoBot.Services private readonly IBotCredentials _creds; private readonly DateTime _started; - public const string BotVersion = "3.0.11"; + public const string BotVersion = "3.0.12"; public string Author => "Kwoth#2452"; public string Library => "Discord.Net"; public double MessagesPerSecond => MessageCounter / GetUptime().TotalSeconds;