diff --git a/CHANGELOG.md b/CHANGELOG.md index 0095177e90..8f9e506d04 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +### Version 13.67 [ June 26th 2024 ] +* Skinned LFG and Dressing Room scrollbar. +* Guild reputation progress bar fixed. +* Player Alt Power bar not staying connected to its mover. +* ObjectiveTracker leveling taint (Retail & Panda Remix). +* Guild Datatext timer Timerunning icon shows correctly. +* Mastery & Haste Datatext added for Cataclysm (Thanks Tsxy). +* Healer only and Auto hide options for Unitframe power. +* Cataclysm tooltip can now show Item Level. + ### Version 13.66 [ May 31st 2024 ] * Classic: Combo points appearing on new targets. * Cataclysm: Reforge skin toggle not working and PVP skin updated. diff --git a/ElvUI/Core/init.lua b/ElvUI/Core/init.lua index 975e61a679..54987c8b12 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.66, '13.66-git', nil, true + return 13.67, '13.67-git', nil, true else local release, extra = strmatch(version, '^v?([%d.]+)(.*)') return tonumber(release), release..extra, extra ~= ''