Skip to content

Commit

Permalink
Adds #41 in release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
alefragnani committed Jan 19, 2019
1 parent 4df9eeb commit 54549ca
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## [7.2.0] - 2019-01-??
### Fixed
- Final cursor position on some Snippets (issue [#41](https://github.com/alefragnani/vscode-language-pascal/issues/41))

## [7.1.2] - 2019-01-05
### Fixed
- Remove remaining format settings (now on Formatter) (issue [#40](https://github.com/alefragnani/vscode-language-pascal/issues/40))
Expand Down
7 changes: 5 additions & 2 deletions src/whats-new/PascalContentProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,12 @@ export class WhatsNewPascalContentProvider implements ContentProvider {
changeLog.push({kind: ChangeLogKind.CHANGED, message: `The <b>Formatter</b> was extracted to its own
extension (<a title=\"Open Pascal Formatter\" href=\"https://github.com/alefragnani/vscode-pascal-formatter/\">
Pascal Formatter</a>)`});
changeLog.push({kind: ChangeLogKind.FIXED, message: `Final cursor position on some Snippets
(<a title=\"Issue #41\" href=\"https://github.com/alefragnani/vscode-language-pascal/issues/41\">
Issue #41</a>)`});
changeLog.push({kind: ChangeLogKind.FIXED, message: `Support <i>.lpr</i> files (Thanks to @BeRo1985
- <a title=\"Open PR #30\" href=\"https://github.com/alefragnani/vscode-language-pascal/pulls/30\">
PR #30</a>)</b>`});
- <a title=\"Open PR #30\" href=\"https://github.com/alefragnani/vscode-language-pascal/pull/30\">
PR #30</a>)`});
return changeLog;
}

Expand Down

0 comments on commit 54549ca

Please sign in to comment.