Skip to content

Commit

Permalink
docs updated for 12.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
alefragnani committed Dec 23, 2020
1 parent 312faea commit 6073694
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 4 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
@@ -1,7 +1,13 @@
## [12.1.0] - 2020-12-??
## [12.1.0] - 2020-12-23
### Added
- Support submenu for editor commands (issue [#351](https://github.com/alefragnani/vscode-bookmarks/issues/351))

## Changed
- Setting `bookmarks.navigateThroughAllFiles` is now `true` by default (issue [#102](https://github.com/alefragnani/vscode-bookmarks/issues/102))

## Internal
- Remove unnecessary files from extension package (issue [#355](https://github.com/alefragnani/vscode-bookmarks/issues/355))

## [12.0.0] - 2020-11-24
### Added
- `Open Settings` command to the Side Bar (issue [#352](https://github.com/alefragnani/vscode-bookmarks/issues/352))
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -2,7 +2,7 @@
"name": "Bookmarks",
"displayName": "Bookmarks",
"description": "Mark lines and jump to them",
"version": "12.0.0",
"version": "12.1.0",
"publisher": "alefragnani",
"engines": {
"vscode": "^1.50.0"
Expand Down Expand Up @@ -228,7 +228,7 @@
{
"submenu": "bookmarks.editor.title",
"group": "bookmarks"
}
}
],
"view/title": [
{
Expand Down
16 changes: 16 additions & 0 deletions src/whats-new/contentProvider.ts
Expand Up @@ -30,6 +30,22 @@ export class WhatsNewBookmarksContentProvider implements ContentProvider {
kind: IssueKind.Issue
}
});
changeLog.push({
kind: ChangeLogKind.CHANGED,
detail: {
message: "Setting <b>bookmarks.navigateThroughAllFiles</b> is now <b>true</b> by default",
id: 102,
kind: IssueKind.Issue
}
});
changeLog.push({
kind: ChangeLogKind.INTERNAL,
detail: {
message: "Remove unnecessary files from extension package",
id: 355,
kind: IssueKind.Issue
}
});

changeLog.push({ kind: ChangeLogKind.VERSION, detail: { releaseNumber: "12.0.0", releaseDate: "November 2020" } });
changeLog.push({
Expand Down

0 comments on commit 6073694

Please sign in to comment.