Skip to content

Commit ae6f6be

Browse files
authored
Prepare release 1.3.2 (#237)
1 parent aa21a82 commit ae6f6be

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Change Log
22

3+
## [1.3.2]
4+
5+
### Fix
6+
7+
- Indent alignment not working in file comments (#206) (#236)
8+
Thanks to @HO-COOH
9+
10+
- Several typos (#233)
11+
Thanks to @jogo-
12+
313
## [1.3.1]
414

515
### Fix

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "doxdocgen",
33
"displayName": "Doxygen Documentation Generator",
44
"description": "Let me generate Doxygen documentation from your source code for you.",
5-
"version": "1.3.1",
5+
"version": "1.3.2",
66
"publisher": "cschlosser",
77
"engines": {
88
"vscode": "^1.55.0"

src/extension.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import CodeParserController from "./CodeParserController";
66
import DoxygenCompletionItemProvider from "./DoxygenCompletionItemProvider";
77

88
enum Version {
9-
CURRENT = "1.3.1",
10-
PREVIOUS = "1.3.0",
9+
CURRENT = "1.3.2",
10+
PREVIOUS = "1.3.1",
1111
KEY = "doxdocgen_version",
1212
}
1313

0 commit comments

Comments
 (0)