chore(release): bump version to 2026.3.1

This commit is contained in:
Agent
2026-03-01 21:14:09 +00:00
parent 94a5d28d26
commit e7cafed424
52 changed files with 82 additions and 82 deletions

View File

@@ -13,15 +13,15 @@ describe("collectAppcastSparkleVersionErrors", () => {
});
it("requires lane-floor builds on and after lane-floor cutover", () => {
const xml = `<rss><channel>${makeItem("2026.2.27", "202602270")}</channel></rss>`;
const xml = `<rss><channel>${makeItem("2026.3.1", "202603010")}</channel></rss>`;
expect(collectAppcastSparkleVersionErrors(xml)).toEqual([
"appcast item '2026.2.27' has sparkle:version 202602270 below lane floor 2026022790.",
"appcast item '2026.3.1' has sparkle:version 202603010 below lane floor 2026030190.",
]);
});
it("accepts canonical stable lane builds on and after lane-floor cutover", () => {
const xml = `<rss><channel>${makeItem("2026.2.27", "2026022790")}</channel></rss>`;
const xml = `<rss><channel>${makeItem("2026.3.1", "2026030190")}</channel></rss>`;
expect(collectAppcastSparkleVersionErrors(xml)).toEqual([]);
});