diff --git a/CHANGELOG.md b/CHANGELOG.md index c17b994..73820f7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## [9.5.0] - 2022-03-28 +### Added +* Web Support (issue [#89](https://github.com/alefragnani/vscode-language-pascal/issues/89)) +* Getting Started/Walkthrough (issue [#84](https://github.com/alefragnani/vscode-language-pascal/issues/84)) +* Update Keywords (issue [#102](https://github.com/alefragnani/vscode-language-pascal/issues/102)) + ## [9.4.0] - 2021-12-10 ### Internal * Add CONTRIBUTING documentation (issue [#95](https://github.com/alefragnani/vscode-language-pascal/issues/95)) diff --git a/README.md b/README.md index 1606d08..47489e7 100644 --- a/README.md +++ b/README.md @@ -7,11 +7,12 @@ Pascal Logo

-# What's new in Pascal 9.4 +# What's new in Pascal 9.5 +* Adds **Web** support +* Adds **Getting Started / Walkthrough** * Adds **Virtual Workspaces** support * Adds **Workspace Trust** support -* Adds **Multi-root** support ## Support diff --git a/package-lock.json b/package-lock.json index 1cbb520..e6c5b0d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "pascal", - "version": "9.4.0", + "version": "9.5.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "pascal", - "version": "9.4.0", + "version": "9.5.0", "license": "SEE LICENSE IN LICENSE.md", "devDependencies": { "@types/node": "^14.17.27", diff --git a/package.json b/package.json index cc9800e..f72a2f5 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "pascal", "displayName": "Pascal", "description": "Pascal language support for Visual Studio Code", - "version": "9.4.0", + "version": "9.5.0", "publisher": "alefragnani", "galleryBanner": { "color": "#4682B4", diff --git a/src/whats-new/contentProvider.ts b/src/whats-new/contentProvider.ts index 6e87cfa..156ae2a 100644 --- a/src/whats-new/contentProvider.ts +++ b/src/whats-new/contentProvider.ts @@ -17,6 +17,32 @@ export class PascalContentProvider implements ContentProvider { provideChangeLog(): ChangeLogItem[] { const changeLog: ChangeLogItem[] = []; + changeLog.push({ kind: ChangeLogKind.VERSION, detail: { releaseNumber: "9.5.0", releaseDate: "March 2022" } }); + changeLog.push({ + kind: ChangeLogKind.NEW, + detail: { + message: "Add Web support", + id: 89, + kind: IssueKind.Issue + } + }); + changeLog.push({ + kind: ChangeLogKind.NEW, + detail: { + message: "Add Getting Started / Walkthrough", + id: 84, + kind: IssueKind.Issue + } + }); + changeLog.push({ + kind: ChangeLogKind.NEW, + detail: { + message: "Update keywords", + id: 102, + kind: IssueKind.Issue + } + }); + changeLog.push({ kind: ChangeLogKind.VERSION, detail: { releaseNumber: "9.4.0", releaseDate: "November 2021" } }); changeLog.push({ kind: ChangeLogKind.INTERNAL,