Skip to content

Commit

Permalink
docs updated for v2.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
alefragnani committed Apr 5, 2024
1 parent f24aae3 commit 8964d23
Show file tree
Hide file tree
Showing 5 changed files with 61 additions and 30 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
## [2.9.0] - 2024-04-04
### Added
- Published to Open VSX (issue [#36](https://github.com/alefragnani/vscode-pascal-formatter/issues/36))

### Changed
- Avoid What's New when using Gitpod (issue [#60](https://github.com/alefragnani/vscode-pascal-formatter/issues/60))
- Avoid What's New when installing lower versions (issue [#60](https://github.com/alefragnani/vscode-pascal-formatter/issues/60))

### Internal
- Security Alert: word-wrap (dependabot [PR #62](https://github.com/alefragnani/vscode-pascal-formatter/pull/62))
- Security Alert: webpack (dependabot [PR #59](https://github.com/alefragnani/vscode-pascal-formatter/pull/59))

## [2.8.0] - 2023-02-22
### Added
- Quadroid JEDI Formatter Support (Thanks to @quadroid [PR #52](https://github.com/alefragnani/vscode-pascal-formatter/pull/52))
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@
<a title="Learn more about Pascal Formatter" href="https://github.com/alefragnani/vscode-pascal-formatter"><img src="https://raw.githubusercontent.com/alefragnani/vscode-pascal-formatter/master/images/vscode-pascal-formatter-logo-readme.png" alt="Pascal Formatter Logo" width="70%" /></a>
</p>

# What's new in Pascal Formatter 2.8
# What's new in Pascal Formatter 2.9

* Published to **Open VSX**
* Adds **Quadroid JEDI Formatter** support
* Adds **Virtual Workspaces** support
* Adds **Workspace Trust** support
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "pascal-formatter",
"displayName": "Pascal Formatter",
"description": "Source code formatter for Pascal",
"version": "2.8.1",
"version": "2.9.0",
"publisher": "alefragnani",
"galleryBanner": {
"color": "#4682B4",
Expand Down
70 changes: 44 additions & 26 deletions src/whats-new/contentProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,50 @@ export class PascalFormatterContentProvider implements ContentProvider {
provideChangeLog(): ChangeLogItem[] {
const changeLog: ChangeLogItem[] = [];

changeLog.push({ kind: ChangeLogKind.VERSION, detail: { releaseNumber: "2.9.0", releaseDate: "March 2024" } });
changeLog.push({
kind: ChangeLogKind.NEW,
detail: {
message: "Published to Open VSX",
id: 36,
kind: IssueKind.Issue
}
});
changeLog.push({
kind: ChangeLogKind.CHANGED,
detail: {
message: "Avoid What's New when using Gitpod",
id: 60,
kind: IssueKind.Issue
}
});
changeLog.push({
kind: ChangeLogKind.CHANGED,
detail: {
message: "Avoid What's New when installing lower versions",
id: 60,
kind: IssueKind.Issue
}
});
changeLog.push({
kind: ChangeLogKind.INTERNAL,
detail: {
message: "Security Alert: word-wrap",
id: 62,
kind: IssueKind.PR,
kudos: "dependabot"
}
});
changeLog.push({
kind: ChangeLogKind.INTERNAL,
detail: {
message: "Security Alert: webpack",
id: 59,
kind: IssueKind.PR,
kudos: "dependabot"
}
});

changeLog.push({ kind: ChangeLogKind.VERSION, detail: { releaseNumber: "2.8.0", releaseDate: "January 2023" } });
changeLog.push({
kind: ChangeLogKind.NEW,
Expand Down Expand Up @@ -84,32 +128,6 @@ export class PascalFormatterContentProvider implements ContentProvider {
detail: "Add <b>GitHub Sponsors</b> support"
});

changeLog.push({ kind: ChangeLogKind.VERSION, detail: { releaseNumber: "2.6.0", releaseDate: "November 2021" } });
changeLog.push({
kind: ChangeLogKind.INTERNAL,
detail: {
message: "Add CONTRIBUTING documentation",
id: 33,
kind: IssueKind.Issue
}
});
changeLog.push({
kind: ChangeLogKind.INTERNAL,
detail: {
message: "Update dependencies",
id: 35,
kind: IssueKind.Issue
}
});
changeLog.push({
kind: ChangeLogKind.INTERNAL,
detail: {
message: "Do not show welcome message if installed by Settings Sync",
id: 34,
kind: IssueKind.Issue
}
});

return changeLog;
}

Expand Down

0 comments on commit 8964d23

Please sign in to comment.