Skip to content

Commit

Permalink
Merge pull request #39 from blendthink/release/v2.0.1
Browse files Browse the repository at this point in the history
Release/v2.0.1
  • Loading branch information
blendthink authored Sep 29, 2022
2 parents cbc7e50 + 228e341 commit 246d03e
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 4 deletions.
1 change: 1 addition & 0 deletions .pubignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
docs/
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 2.0.1

### Fixed

- Fixed to always delete previous comments.

## 2.0.0

### Changed
Expand Down
4 changes: 2 additions & 2 deletions lib/cli/command/run.dart
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@ class RunCommand extends Command<dynamic> {
final head = HeadOption.head(argResults, usageException);
final dir = DirOption.dir(argResults, usageException);

await _deletePreviousComments(repo: repo, num: num);

final indicates = await _getIndicates(
dir: dir,
base: base,
Expand All @@ -59,8 +61,6 @@ class RunCommand extends Command<dynamic> {
return;
}

await _deletePreviousComments(repo: repo, num: num);

final result = await _commentIndicates(
repo: repo,
num: num,
Expand Down
2 changes: 1 addition & 1 deletion lib/gen/version.gen.dart
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
/// DO NOT MODIFY BY HAND, Generated by version_gen
String packageVersion = '2.0.0';
String packageVersion = '2.0.1';
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: elixir
description: Tool for commenting `dart analyze` results to GitHub PullRequest.
version: 2.0.0
version: 2.0.1
homepage: https://github.com/blendthink/elixir
repository: https://github.com/blendthink/elixir
documentation: https://github.com/blendthink/elixir
Expand Down

0 comments on commit 246d03e

Please sign in to comment.