build: bump version to 2026.3.31

This commit is contained in:
Peter Steinberger
2026-03-31 15:46:42 +01:00
parent 5e30da3cad
commit c425ef3e74
92 changed files with 139 additions and 135 deletions

View File

@@ -100,7 +100,7 @@ describe("resolveNpmPublishPlan", () => {
});
it("does not mirror beta when beta already points at a newer prerelease", () => {
expect(resolveNpmPublishPlan("2026.3.29", "2026.3.30-beta.1")).toEqual({
expect(resolveNpmPublishPlan("2026.3.29", "2026.3.31-beta.1")).toEqual({
channel: "stable",
publishTag: "latest",
mirrorDistTags: [],
@@ -122,7 +122,7 @@ describe("compareReleaseVersions", () => {
});
it("treats a newer beta day as newer than an older stable day", () => {
expect(compareReleaseVersions("2026.3.30-beta.1", "2026.3.29")).toBe(1);
expect(compareReleaseVersions("2026.3.31-beta.1", "2026.3.29")).toBe(1);
});
it("orders stable correction releases after the base stable release", () => {