Skip to content

Commit 65aa928

Browse files
chore: bump version to 1.12.3 (#379)
1 parent 873719e commit 65aa928

File tree

4 files changed

+133
-33
lines changed

4 files changed

+133
-33
lines changed

Cargo.lock

Lines changed: 31 additions & 31 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ authors = [
1919
edition = "2024"
2020
homepage = "https://aws.amazon.com/q/"
2121
publish = false
22-
version = "1.12.2"
22+
version = "1.12.3"
2323
license = "MIT OR Apache-2.0"
2424

2525
[workspace.dependencies]

feed-schema.json

Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
{
2+
"$schema": "http://json-schema.org/draft-07/schema",
3+
"title": "Amazon Q for CLI Feed",
4+
"type": "object",
5+
"properties": {
6+
"entries": {
7+
"type": "array",
8+
"items": {
9+
"type": "object",
10+
"properties": {
11+
"type": {
12+
"type": "string",
13+
"enum": ["release", "announcement"],
14+
"description": "The type of entry"
15+
},
16+
"date": {
17+
"type": "string",
18+
"description": "The date of the entry, must be valid RFC3339 date",
19+
"format": "date"
20+
},
21+
"version": {
22+
"type": "string",
23+
"description": "The version of the entry, must be valid semver",
24+
"pattern": "^\\d+\\.\\d+\\.\\d+$"
25+
},
26+
"title": {
27+
"type": "string",
28+
"description": "The title of the entry",
29+
"minLength": 1
30+
},
31+
"description": {
32+
"type": "string",
33+
"description": "The description of the entry",
34+
"minLength": 1
35+
},
36+
"link": {
37+
"type": "string",
38+
"description": "A url to more information about the entry",
39+
"format": "uri"
40+
},
41+
"changes": {
42+
"type": "array",
43+
"items": {
44+
"type": "object",
45+
"properties": {
46+
"type": {
47+
"type": "string",
48+
"enum": [
49+
"added",
50+
"changed",
51+
"deprecated",
52+
"removed",
53+
"fixed",
54+
"security"
55+
]
56+
},
57+
"description": {
58+
"type": "string",
59+
"description": "The description of the change",
60+
"minLength": 1
61+
}
62+
},
63+
"required": ["type", "description"]
64+
}
65+
},
66+
"hidden": {
67+
"type": "boolean",
68+
"description": "Whether to hide this entry from the UI"
69+
}
70+
},
71+
"required": ["type", "title", "date", "version"]
72+
}
73+
}
74+
},
75+
"required": ["entries"]
76+
}

0 commit comments

Comments
 (0)