From 29af2b822982047a4bcba15cb292443a113bb194 Mon Sep 17 00:00:00 2001 From: "Christopher D. Fennell" Date: Wed, 12 Aug 2026 20:36:49 -0400 Subject: [PATCH] Bump the interface version to 12.1.0 The TOC still declared 120007. On patch 12.1.0 the client marks the addon out of date and CurseForge/Wago flag the file, so the number moves to 120100 even though nothing in the addon needed to change. The test stub's GetBuildInfo now returns the same build, and the README support badge follows. The prose references to patch 12.0 are left alone: they date the introduction of secret values, which is still 12.0. --- CHANGELOG.md | 8 ++++++++ README.md | 2 +- StatPanel.toc | 2 +- tests/wow_stub.lua | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 813bd10..54efa2b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ All notable changes to StatPanel are recorded here. This project follows [Semantic Versioning](https://semver.org/) and the format of [Keep a Changelog](https://keepachangelog.com/en/1.1.0/). +## [Unreleased] + +### Changed + +- **Interface version bumped to `120100` for patch 12.1.0.** No code changes + were needed; this is the flag that stops the client and the listing sites + marking the addon out of date. + ## [2.5.0] - 2026-08-06 ### Fixed diff --git a/README.md b/README.md index 838ca4b..248d481 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # StatPanel ![License](https://img.shields.io/badge/license-MIT-blue.svg) -![Interface](https://img.shields.io/badge/WoW-12.0%20Midnight-orange.svg) +![Interface](https://img.shields.io/badge/WoW-12.1%20Midnight-orange.svg) ![Lua](https://img.shields.io/badge/Lua-5.1-000080.svg) A movable panel for World of Warcraft showing your secondary stats in your diff --git a/StatPanel.toc b/StatPanel.toc index d56c778..157ade9 100644 --- a/StatPanel.toc +++ b/StatPanel.toc @@ -1,4 +1,4 @@ -## Interface: 120007 +## Interface: 120100 ## Title: StatPanel ## Notes: Fully customizable secondary stat, speed and FPS display ## Author: Fennell diff --git a/tests/wow_stub.lua b/tests/wow_stub.lua index 22d33c1..54a498e 100644 --- a/tests/wow_stub.lua +++ b/tests/wow_stub.lua @@ -212,7 +212,7 @@ function M.install(env) -- Character and stats ---------------------------------------------------------------------------- def("GetLocale", function() return "enUS" end) - def("GetBuildInfo", function() return "12.0.7", "62000", "Jul 27 2026", 120007 end) + def("GetBuildInfo", function() return "12.1.0", "62000", "Jul 27 2026", 120100 end) def("UnitName", function() return "Teststrider" end) def("GetRealmName", function() return "Test Realm" end) def("UnitClass", function() return "Hunter", "HUNTER", 3 end)