Merge branch 'develop' into releases/0.19.1

This commit is contained in:
WithoutPants
2023-02-21 15:56:42 +11:00
committed by GitHub
307 changed files with 7906 additions and 6572 deletions

View File

@@ -1,9 +1,7 @@
import migration32 from "./32.md";
import migration39 from "./39.md";
type Module = typeof migration32;
export const migrationNotes: Record<number, Module> = {
export const migrationNotes: Record<number, string> = {
32: migration32,
39: migration39,
};

View File

@@ -1,11 +1,9 @@
import v0170 from "./v0170.md";
export type Module = typeof v0170;
interface IReleaseNotes {
// handle should be in the form of YYYYMMDD
date: number;
content: Module;
content: string;
}
export const releaseNotes: IReleaseNotes[] = [