Skip to content

Commit c703c6a

Browse files
authored
Release 1.1.0 (#189)
* Release 1.1.0 * Make linter happy
1 parent 771d246 commit c703c6a

File tree

6 files changed

+73
-8
lines changed

6 files changed

+73
-8
lines changed

CHANGELOG.md

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

3+
## [1.1.0]
4+
5+
### Feature
6+
7+
- Substitute author and email by git config (#186) (#182)
8+
Thanks to @to-s
9+
10+
### Other
11+
12+
- Update to Typescript 3.8.3
13+
314
## [1.0.1]
415

516
### Fix

package-lock.json

Lines changed: 57 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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.0.1",
5+
"version": "1.1.0",
66
"publisher": "cschlosser",
77
"engines": {
88
"vscode": "^1.37.0"

src/extension.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import * as vscode from "vscode";
55
import CodeParserController from "./CodeParserController";
66

77
enum Version {
8-
CURRENT = "1.0.1",
9-
PREVIOUS = "1.0.0",
8+
CURRENT = "1.1.0",
9+
PREVIOUS = "1.0.1",
1010
KEY = "doxdocgen_version",
1111
}
1212

src/test/CppTests/Config.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ suite("C++ - Configuration Tests", () => {
271271
testSetup.cfg.Generic.useGitUserEmail = true;
272272
const result = testSetup.SetLine("").GetResult();
273273
assert.strictEqual("/**\n * @brief \n * \n * @file MockDocument.h\n * @author " +
274-
testSetup.gitConfig.UserName + " (" + testSetup.gitConfig.UserEmail+
274+
testSetup.gitConfig.UserName + " (" + testSetup.gitConfig.UserEmail +
275275
")\n * @date " + moment().format("YYYY-MM-DD") + "\n */", result);
276276
});
277277

src/test/CppTests/TrailingReturns.test.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ suite("C++ - Trailing returns tests", () => {
2323

2424
test("Trailing return with decltype", () => {
2525
const result = testSetup.SetLine("auto foo(int a, double b) -> decltype(a + b);").GetResult();
26+
// tslint:disable-next-line: max-line-length
2627
assert.strictEqual("/**\n * @brief \n * \n * @param a \n * @param b \n * @return decltype(a + b) \n */", result);
2728
});
2829

0 commit comments

Comments
 (0)