docs: update API references to include 1.6.x

This commit is contained in:
Steven Nguyen
2024-07-26 23:21:47 +00:00
parent 1a55e20131
commit 7e06e9d0bb
2 changed files with 16 additions and 1 deletions

View File

@@ -2,7 +2,17 @@ import { writable } from 'svelte/store';
import type { Language } from './code';
import { browser } from '$app/environment';
const allVersions = ['1.5.x', '1.4.x', '1.3.x', '1.2.x', '1.1.x', '1.0.x', '0.15.x', 'cloud'] as const;
const allVersions = [
'1.6.x',
'1.5.x',
'1.4.x',
'1.3.x',
'1.2.x',
'1.1.x',
'1.0.x',
'0.15.x',
'cloud'
] as const;
export type Version = (typeof allVersions)[number];