From 43fa5a22f54e89b53efad60b23e0178a18469bd3 Mon Sep 17 00:00:00 2001 From: Kwoth Date: Thu, 28 Jul 2022 14:33:32 +0200 Subject: [PATCH] Updated changelog.md, Upped version to 4.3.2 --- CHANGELOG.md | 11 +++++++++++ src/NadekoBot/Modules/Gambling/Bank/BankCommands.cs | 4 +--- src/NadekoBot/Services/Impl/StatsService.cs | 2 +- 3 files changed, 13 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fcef9b245..b0c154775 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,17 @@ Experimental changelog. Mostly based on [keepachangelog](https://keepachangelog. - Check for updates will run once per hour as it was supposed to +## [4.3.2] - 28.07.2022 + +### Fixed + +- Fixed Reaction Roles not working properly with animated emojis +- Fixed `.slot` alignment +- Fixed `mysql` and `postgresql` reactionrole migration +- Fixed repeat loop with `postgresql` db provider +- Fixed `.bank withdraw ` will now correctly use bank amount for calculation +- [dev] Fixed medusa Reply*LocalizedAsync not working with placeholders + ## [4.3.0] - 27.07.2022 ### Added diff --git a/src/NadekoBot/Modules/Gambling/Bank/BankCommands.cs b/src/NadekoBot/Modules/Gambling/Bank/BankCommands.cs index c5b6f5963..75f7f2f8d 100644 --- a/src/NadekoBot/Modules/Gambling/Bank/BankCommands.cs +++ b/src/NadekoBot/Modules/Gambling/Bank/BankCommands.cs @@ -1,6 +1,4 @@ -using Nadeko.Common; -using NadekoBot.Common.TypeReaders; -using NadekoBot.Modules.Gambling.Bank; +using NadekoBot.Modules.Gambling.Bank; using NadekoBot.Modules.Gambling.Common; using NadekoBot.Modules.Gambling.Services; diff --git a/src/NadekoBot/Services/Impl/StatsService.cs b/src/NadekoBot/Services/Impl/StatsService.cs index d0ce3ecf0..28f9ab47a 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.3.1"; + public const string BOT_VERSION = "4.3.2"; public string Author => "Kwoth#2452";