Skip to content

Commit

Permalink
Prepare release 1.4.0 (#276)
Browse files Browse the repository at this point in the history
  • Loading branch information
cschlosser authored Feb 25, 2022
1 parent 3e9b781 commit 742a8ca
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Change Log

## [1.4.0]

### Feature

- Use `vscode.workspace.workspaceFolders[0]` to construct SimpleGit instance (#268)
Thanks to @lukester1975

### Fix

- Add official VS Code Language identifier for CUDA (#273)
Thanks to @jobtijhuis

## [1.3.2]

### Fix
Expand Down
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": "doxdocgen",
"displayName": "Doxygen Documentation Generator",
"description": "Let me generate Doxygen documentation from your source code for you.",
"version": "1.3.2",
"version": "1.4.0",
"publisher": "cschlosser",
"engines": {
"vscode": "^1.55.0"
Expand Down
4 changes: 2 additions & 2 deletions src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import CodeParserController from "./CodeParserController";
import DoxygenCompletionItemProvider from "./DoxygenCompletionItemProvider";

enum Version {
CURRENT = "1.3.2",
PREVIOUS = "1.3.1",
CURRENT = "1.4.0",
PREVIOUS = "1.3.2",
KEY = "doxdocgen_version",
}

Expand Down

0 comments on commit 742a8ca

Please sign in to comment.