Skip to content

Commit

Permalink
Release 1.1.0 (#189)
Browse files Browse the repository at this point in the history
* Release 1.1.0

* Make linter happy
  • Loading branch information
cschlosser authored Oct 19, 2020
1 parent 771d246 commit c703c6a
Show file tree
Hide file tree
Showing 6 changed files with 73 additions and 8 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Change Log

## [1.1.0]

### Feature

- Substitute author and email by git config (#186) (#182)
Thanks to @to-s

### Other

- Update to Typescript 3.8.3

## [1.0.1]

### Fix
Expand Down
61 changes: 57 additions & 4 deletions package-lock.json

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

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.0.1",
"version": "1.1.0",
"publisher": "cschlosser",
"engines": {
"vscode": "^1.37.0"
Expand Down
4 changes: 2 additions & 2 deletions src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import * as vscode from "vscode";
import CodeParserController from "./CodeParserController";

enum Version {
CURRENT = "1.0.1",
PREVIOUS = "1.0.0",
CURRENT = "1.1.0",
PREVIOUS = "1.0.1",
KEY = "doxdocgen_version",
}

Expand Down
2 changes: 1 addition & 1 deletion src/test/CppTests/Config.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ suite("C++ - Configuration Tests", () => {
testSetup.cfg.Generic.useGitUserEmail = true;
const result = testSetup.SetLine("").GetResult();
assert.strictEqual("/**\n * @brief \n * \n * @file MockDocument.h\n * @author " +
testSetup.gitConfig.UserName + " (" + testSetup.gitConfig.UserEmail+
testSetup.gitConfig.UserName + " (" + testSetup.gitConfig.UserEmail +
")\n * @date " + moment().format("YYYY-MM-DD") + "\n */", result);
});

Expand Down
1 change: 1 addition & 0 deletions src/test/CppTests/TrailingReturns.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ suite("C++ - Trailing returns tests", () => {

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

Expand Down

0 comments on commit c703c6a

Please sign in to comment.