From 54738376e6c9f3f4ac32123c81aa59ce4000c0eb Mon Sep 17 00:00:00 2001 From: Simpy Date: Wed, 14 Aug 2024 07:18:53 -0400 Subject: [PATCH] 13.74 --- CHANGELOG.md | 5 ++++- ElvUI/Core/init.lua | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e4c5ea69c..7a54797294 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +### Version 13.74 [ August 14th 2024 ] +* Changes required for 11.0.2 +* Unitframe Portraits not lined up in thick border mode + ### Version 13.73 [ August 7th 2024 ] * **Important:** * Unitframe range was a bit messed up. @@ -30,7 +34,6 @@ * Classic Mage Advanced Warding Rune which adds Remove Greater Curse not properly displaying dispels. * Classic Mage Channel Ticks for Regeneration and Mass Regeneration. (Thanks Zavoky) - ### Version 13.72 [ July 25th 2024 ] * Chat error when Battlenet is failing to provide info during Social Queue. * Spec Switch Datatext was not opening Talents. diff --git a/ElvUI/Core/init.lua b/ElvUI/Core/init.lua index 72a32df02e..b28065941d 100644 --- a/ElvUI/Core/init.lua +++ b/ElvUI/Core/init.lua @@ -116,7 +116,7 @@ end function E:ParseVersionString(addon) local version = GetAddOnMetadata(addon, 'Version') if strfind(version, 'project%-version') then - return 13.73, '13.73-git', nil, true + return 13.74, '13.74-git', nil, true else local release, extra = strmatch(version, '^v?([%d.]+)(.*)') return tonumber(release), release..extra, extra ~= ''