forked from carbon-design-system/carbon-ai-chat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathversions.js
More file actions
39 lines (38 loc) · 822 Bytes
/
versions.js
File metadata and controls
39 lines (38 loc) · 822 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*
* Copyright IBM Corp. 2025
*
* This source code is licensed under the Apache-2.0 license found in the
* LICENSE file in the root directory of this source tree.
*
* @license
*/
/**
* Array of full release versions to populate the demo / documentation dropdowns to allow
* adopters to easily switch between demo / documentation versions.
*
* Note: Only include full releases (e.g., v1.0.0), not RC or pre-release versions.
* The array should be ordered with newest versions first, there is no sorting later on.
*/
export const AI_CHAT_VERSIONS = [
"v1.8.0",
"v1.7.0",
"v1.6.0",
"v1.5.1",
"v1.5.0",
"v1.4.4",
"v1.4.3",
"v1.4.2",
"v1.4.1",
"v1.4.0",
"v1.3.2",
"v1.3.1",
"v1.3.0",
"v1.2.1",
"v1.2.0",
"v1.1.0",
"v1.0.0",
"v0.5.2",
"v0.5.1",
"v0.5.0",
"v0.4.0",
];