diff --git a/CHANGELOG.html b/CHANGELOG.html
index 6ef20c2..8c8c563 100644
--- a/CHANGELOG.html
+++ b/CHANGELOG.html
@@ -1,3 +1,57 @@
+
2022-09-06
+ MANDATORY UPDATE
+
+Highlights
+
+- Death Knights are now supported, and should no longer cause lua errors.
+- Host now has semi-automatic item distribution. Click the buttons to send items automatically to their destinations.
+- Created a library for item caching: ItemCache. Precaching is now configurable, and defaults to off.
+- Many performance improvements, especially related to UI and Search.
+- Lowered storage and memory usage.
+- LootReserve now patches a Blizzard issue where the trade frame green highlighting can disappear after the trade has been accepted.
+
+
+Host
+
+- Added export for Roll History. The export format is CSV. There is no way to import history.
+- Added config option to change default channel for when Reserves are listed. This used to use the same channel as Instructions.
+- Added config option for 12h time format. 24h remains the default format.
+- Added config option to accept rolls after the timer has ended. This is on by default.
+- Best Name Match is enabled by default in Host Import.
+
+- Can now continue a roll from history. Rolls with multiple phases that were made prior to this change will not continue to the next phase as expected.
+- Stackable BoP items are no longer added to Recent Loot if someone else loots one (they are never tradeable in raids).
+- Can now shift-click and control-click on Recent Loot items to hide or block them from the list.
+- Recent Loot dropdown now shows item tooltips.
+- Empty Rolls can now be hidden from Roll History. This is on by default.
+- Distributed rolls can now be hidden from Roll History. This is off by default.
+- Recent Chat icon in Rolls tab is better at detecting when chat is irrelevant.
+- Session now starts with reserves closed. Reserves must be opened with a second click.
+- Rolls with a red glow in Rolls tab now show a tooltip explaining the reason for the glow.
+- When multiple roll phases are selected, a roll can be started at any phase.
+- Reserves and Roll History can be reported over more channels.
+- Remind All button now heavily throttles messages. It should work much better when many players are still missing reserves.
+- Hid Mojo by default in Zul'Aman.
+
+
+Client
+
+- Dressup window can now be opened from the Roll Popup.
+- Some raids now list quest rewards, set items, and other miscellaneous items that may be indirectly acquired from a raid (such as sunmote exchange items).
+- Added config option to suppress the Roll Popup for unusable BoE items. This is on by default.
+- Added config options to suppress chat hints about how to reopen windows when they're closed.
+- Added chat warning when closing the reserves window with remaining reserves.
+
+
+Fixes
+
+- Many various unlisted fixes.
+- Fixed double roll in history when "Remove Winners' Reserves" feature is used.
+- Fixed lua error when reporting reserves on an item.
+- Fixed lua error which could happen with extremely stale sessions (over a year).
+- Fixed lua error related to Broadcast Instructions button.
+
+
2022-02-21
FILE CHANGES. UPDATING REQUIRES GAME RESTART
diff --git a/LootReserve.toc b/LootReserve.toc
index 9389c0b..24ec5b3 100644
--- a/LootReserve.toc
+++ b/LootReserve.toc
@@ -1,10 +1,10 @@
-## Interface: 20503
+## Interface: 30400
## Title: LootReserve
## Notes: Soft reserves management addon
## Author: Damagus-Benediction|nOriginal addon by Tagar-NethergardeKeep
-## Version: 2022-02-21
-## X-Min-Allowed-Version: 2022-02-13
+## Version: 2022-09-06
+## X-Min-Allowed-Version: 2022-09-06
## OptionalDeps: ItemCache
diff --git a/LootReserve_TBC.toc b/LootReserve_TBC.toc
index 9389c0b..24ec5b3 100644
--- a/LootReserve_TBC.toc
+++ b/LootReserve_TBC.toc
@@ -1,10 +1,10 @@
-## Interface: 20503
+## Interface: 30400
## Title: LootReserve
## Notes: Soft reserves management addon
## Author: Damagus-Benediction|nOriginal addon by Tagar-NethergardeKeep
-## Version: 2022-02-21
-## X-Min-Allowed-Version: 2022-02-13
+## Version: 2022-09-06
+## X-Min-Allowed-Version: 2022-09-06
## OptionalDeps: ItemCache
diff --git a/LootReserve_Vanilla.toc b/LootReserve_Vanilla.toc
index df2fc5e..ba2cace 100644
--- a/LootReserve_Vanilla.toc
+++ b/LootReserve_Vanilla.toc
@@ -1,10 +1,10 @@
-## Interface: 11402
+## Interface: 11403
## Title: LootReserve
## Notes: Soft reserves management addon
## Author: Damagus-Benediction|nOriginal addon by Tagar-NethergardeKeep
-## Version: 2022-02-21
-## X-Min-Allowed-Version: 2022-02-13
+## Version: 2022-09-06
+## X-Min-Allowed-Version: 2022-09-06
## OptionalDeps: ItemCache
diff --git a/LootReserve_Wrath.toc b/LootReserve_Wrath.toc
new file mode 100644
index 0000000..24ec5b3
--- /dev/null
+++ b/LootReserve_Wrath.toc
@@ -0,0 +1,32 @@
+## Interface: 30400
+## Title: LootReserve
+## Notes: Soft reserves management addon
+## Author: Damagus-Benediction|nOriginal addon by Tagar-NethergardeKeep
+
+## Version: 2022-09-06
+## X-Min-Allowed-Version: 2022-09-06
+
+## OptionalDeps: ItemCache
+
+## SavedVariables: LootReserveGlobalSave
+## SavedVariablesPerCharacter: LootReserveCharacterSave
+
+embeds.xml
+
+LootReserve.lua
+Constants.lua
+ItemSearch.lua
+Client.lua
+Server.lua
+Comm.lua
+Data.lua
+ItemConditions.lua
+
+Windows/Common.xml
+Windows/ClientWindow.xml
+Windows/ServerWindow.xml
+Windows/RollRequestWindow.xml
+Windows/ServerLootEditWindow.xml
+Windows/ServerMembersEditWindow.xml
+Windows/ServerImportWindow.xml
+Windows/ServerExportWindow.xml