Skip to content

Commit

Permalink
docs updated for 2.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
alefragnani committed Jul 16, 2022
1 parent d7f00c8 commit 2663d64
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## [2.4.1] - 2022-07-16
### Internal
- Add GitHub Sponsors support (PR [#54](https://github.com/alefragnani/vscode-separators/pull/71))

## [2.4.0] - 2022-03-31
### Added
- Add **Web** support (issue [#54](https://github.com/alefragnani/vscode-separators/issues/54))
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": "separators",
"displayName": "Separators",
"description": "Improve the readability of your source code with lines on top of each method",
"version": "2.4.0",
"version": "2.4.1",
"publisher": "alefragnani",
"galleryBanner": {
"color": "#0000FF",
Expand Down
6 changes: 6 additions & 0 deletions src/whats-new/contentProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@ export class SeparatorsContentProvider implements ContentProvider {
public provideChangeLog(): ChangeLogItem[] {
const changeLog: ChangeLogItem[] = [];

changeLog.push({ kind: ChangeLogKind.VERSION, detail: { releaseNumber: "2.4.1", releaseDate: "June 2022" } });
changeLog.push({
kind: ChangeLogKind.INTERNAL,
detail: "Add <b>GitHub Sponsors</b> support"
});

changeLog.push({ kind: ChangeLogKind.VERSION, detail: { releaseNumber: "2.4.0", releaseDate: "March 2022" } });
changeLog.push({
kind: ChangeLogKind.NEW,
Expand Down

0 comments on commit 2663d64

Please sign in to comment.