diff --git a/CHANGELOG.md b/CHANGELOG.md index 22e168a25f..d482cb3fc1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +### Version 13.62 [ April 30th 2024 ] +* Cataclysm Classic ready. +* DualSpec enabled for SoD. +* Shadowform paging on Era. +* Guild Deaths event not existing on Era, causing an error. +* Range of Unitframes breaking when Spell Ranks unchecked. +* Aura Indicator option for Pet Frames to use Profile or Global instead (uncheck Pet Specific). +* Threat option added to allow high threat to be shown without being primary target, also another to display Player threat on Target or Focus frame. +* Tag [threat:lead] added to display percentage of threat lead. +* Raid Utility displayed while in a group, regardless of Leader or Assist, with limited functionality. +* Sunken Temple now on Time Datatext. + ### Version 13.61 [ April 2nd 2024 ] * Microbar Support Ticket button in middle of screen. * Minimap Icons not hiding when using the keybind for Toggle Minimap. diff --git a/ElvUI/Core/init.lua b/ElvUI/Core/init.lua index 4c30d5a09e..12ec51917a 100644 --- a/ElvUI/Core/init.lua +++ b/ElvUI/Core/init.lua @@ -117,7 +117,7 @@ end function E:ParseVersionString(addon) local version = GetAddOnMetadata(addon, 'Version') if strfind(version, 'project%-version') then - return 13.61, '13.61-git', nil, true + return 13.62, '13.62-git', nil, true else local release, extra = strmatch(version, '^v?([%d.]+)(.*)') return tonumber(release), release..extra, extra ~= ''