diff --git a/CHANGELOG.md b/CHANGELOG.md index 70d233861..d5c9ff4d2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ Experimental changelog. Mostly based on [keepachangelog](https://keepachangelog. ## Unreleased +## [3.0.7] + ### Added - `.streamsclear` re-added. It will remove all followed streams on the server. - `.gifts` now have 3 new ✂️ Haircut 🧻 ToiletPaper and 🥀 WiltedRose which **reduce** waifu's value @@ -13,6 +15,9 @@ Experimental changelog. Mostly based on [keepachangelog](https://keepachangelog. - When gifted, the waifu's price will be reduced by the `price * multiplier` - Negative gifts don't show up in `.waifuinfo` nor is the record of them kept in the database +### Fixed +- Fixed `%users%` and `%shard.usercount%` placeholders not showing correct values + ## [3.0.6] - 27.09.2021 ### Added diff --git a/src/NadekoBot/Services/Impl/StatsService.cs b/src/NadekoBot/Services/Impl/StatsService.cs index 17cdc7d34..bd6089212 100644 --- a/src/NadekoBot/Services/Impl/StatsService.cs +++ b/src/NadekoBot/Services/Impl/StatsService.cs @@ -19,7 +19,7 @@ namespace NadekoBot.Services private readonly IBotCredentials _creds; private readonly DateTime _started; - public const string BotVersion = "3.0.6"; + public const string BotVersion = "3.0.7"; public string Author => "Kwoth#2452"; public string Library => "Discord.Net";