Skip to content

Commit 6f82ce3

Browse files
committed
docs updated for v10.0.0
1 parent 1c9f681 commit 6f82ce3

File tree

5 files changed

+63
-7
lines changed

5 files changed

+63
-7
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## [10.0.0] - 2026-01-04
2+
### Added
3+
* CodeTyphon (ppr) support (issue [#47](https://github.com/alefragnani/vscode-language-pascal/issues/47))
4+
* Codespaces support via Linux install instructions (issue [#66](https://github.com/alefragnani/vscode-language-pascal/issues/66))
5+
* **New File** templates support (issue [#148](https://github.com/alefragnani/vscode-language-pascal/issues/148))
6+
7+
### Internal
8+
* Security Alert: serialize-javascript (PR [#161](https://github.com/alefragnani/vscode-language-pascal/pull/161))
9+
* Security Alert: js-yaml (PR [#169](https://github.com/alefragnani/vscode-language-pascal/pull/169))
10+
111
## [9.9.0] - 2025-02-02
212
### Added
313
* Missing keyword (issue [#151](https://github.com/alefragnani/vscode-language-pascal/issues/151))

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,10 @@
77
<a title="Learn more about Pascal" href="http://github.com/alefragnani/vscode-language-pascal"><img src="https://raw.githubusercontent.com/alefragnani/vscode-language-pascal/master/images/vscode-pascal-logo-readme.png" alt="Pascal Logo" width="70%" /></a>
88
</p>
99

10-
# What's new in Pascal 9.9
10+
# What's new in Pascal 10.0
1111

12+
* Adds **New File** templates support
13+
* Adds **Codespaces** support
1214
* Adds more FreePascal Keywords
1315
* Published to **Open VSX**
1416
* Improves **Syntax Highlighting** support for FreePascal and Oxygene

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "pascal",
33
"displayName": "Pascal",
44
"description": "Pascal language support for Visual Studio Code",
5-
"version": "9.9.0",
5+
"version": "10.0.0",
66
"publisher": "alefragnani",
77
"galleryBanner": {
88
"color": "#4682B4",

src/whats-new/contentProvider.ts

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,50 @@ export class PascalContentProvider implements ContentProvider {
1717
provideChangeLog(): ChangeLogItem[] {
1818
const changeLog: ChangeLogItem[] = [];
1919

20+
changeLog.push({ kind: ChangeLogKind.VERSION, detail: { releaseNumber: "10.0.0", releaseDate: "December 2025" } });
21+
changeLog.push({
22+
kind: ChangeLogKind.NEW,
23+
detail: {
24+
message: "CodeTyphon (ppr) support",
25+
id: 47,
26+
kind: IssueKind.Issue
27+
}
28+
});
29+
changeLog.push({
30+
kind: ChangeLogKind.NEW,
31+
detail: {
32+
message: "Codespaces support via Linux install instructions",
33+
id: 66,
34+
kind: IssueKind.Issue
35+
}
36+
});
37+
changeLog.push({
38+
kind: ChangeLogKind.NEW,
39+
detail: {
40+
message: "<b>New File</b> templates support",
41+
id: 148,
42+
kind: IssueKind.Issue
43+
}
44+
});
45+
changeLog.push({
46+
kind: ChangeLogKind.INTERNAL,
47+
detail: {
48+
message: "Security Alert: serialize-javascript",
49+
id: 161,
50+
kind: IssueKind.PR,
51+
kudos: "dependabot"
52+
}
53+
});
54+
changeLog.push({
55+
kind: ChangeLogKind.INTERNAL,
56+
detail: {
57+
message: "Security Alert: js-yaml",
58+
id: 169,
59+
kind: IssueKind.PR,
60+
kudos: "dependabot"
61+
}
62+
});
63+
2064
changeLog.push({ kind: ChangeLogKind.VERSION, detail: { releaseNumber: "9.9.0", releaseDate: "January 2025" } });
2165
changeLog.push({
2266
kind: ChangeLogKind.NEW,

0 commit comments

Comments
 (0)