Skip to content

Commit

Permalink
Bump version to 0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
formulahendry committed Nov 24, 2017
1 parent 54d07c1 commit 7680493
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
## 0.0.2 (2017-11-24)
* Better output format: display output as table
* [#2](https://github.com/formulahendry/vscode-mysql/issues/2): Add option to set maximum table count, and increase the dafault count

## 0.0.1 (2017-11-22)
* Initial Release
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": "vscode-mysql",
"displayName": "MySQL",
"description": "MySQL management tool",
"version": "0.0.1",
"version": "0.0.2",
"publisher": "formulahendry",
"icon": "logo.png",
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion src/common/utility.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export class Utility {
})
.catch((err) => {
OutputChannel.appendLine(err);
AppInsightsClient.sendEvent("runQuery.end", { Result: "Fail" });
AppInsightsClient.sendEvent("runQuery.end", { Result: "Fail", ErrorMessage: err });
})
.then(() => {
OutputChannel.appendLine("[Done] Finished MySQL query.");
Expand Down

0 comments on commit 7680493

Please sign in to comment.