diff --git a/CHANGELOG.md b/CHANGELOG.md
index e6109bcbe..7ba0324b4 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,4 @@
-## **Release v1.31.2 - 2024-08-26**
+## **Release v1.31.3 - 2024-08-27**
**Bob's Buddy**:
- Fixed a major simulation issue with the Bronze Timepiece trinket.
- Fixed trinkets from Souvenir Stand not being incorporated into the simulations.
diff --git a/Hearthstone Deck Tracker/Hearthstone Deck Tracker.csproj b/Hearthstone Deck Tracker/Hearthstone Deck Tracker.csproj
index 24cda23fd..941bdba78 100644
--- a/Hearthstone Deck Tracker/Hearthstone Deck Tracker.csproj
+++ b/Hearthstone Deck Tracker/Hearthstone Deck Tracker.csproj
@@ -11,8 +11,8 @@
en
Hearthstone Deck Tracker
Copyright © HearthSim 2024
- 1.31.2
- 1.31.2
+ 1.31.3
+ 1.31.3
true
x86
x86
diff --git a/Hearthstone Deck Tracker/Utility/ConfigManager.cs b/Hearthstone Deck Tracker/Utility/ConfigManager.cs
index d9518d311..aaacff614 100644
--- a/Hearthstone Deck Tracker/Utility/ConfigManager.cs
+++ b/Hearthstone Deck Tracker/Utility/ConfigManager.cs
@@ -37,7 +37,7 @@ public static void Run()
}
// Logic to silently skip hotfix releases to fix some regressions that players haven't noticed yet
- private static readonly (Version, Version)[] SilentUpgrades = {};
+ private static readonly (Version, Version)[] SilentUpgrades = { (new(1, 31, 2), new(1, 31, 3)) };
public static bool ShouldShowUpdateNotes()
{
if(UpdatedVersion == null)