mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-12 07:20:45 +00:00
chore(release): bump version to 2026.3.1
This commit is contained in:
@@ -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([]);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user