Skip to content

Commit 70041a2

Browse files
committed
Fix pendantic
1 parent 0a32484 commit 70041a2

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 0.7.0
1+
## 0.7.0+1
22
- Added `ProductionFilter`, `FileOutput`, `MemoryOutput`, `SimplePrinter`
33
- Breaking: Changed `LogFilter`, `LogPrinter` and `LogOutput`
44

analysis_options.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
include: package:pedantic/analysis_options.yaml

lib/src/outputs/file_output.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ class FileOutput extends LogOutput {
2929
@override
3030
void destroy() async {
3131
await _sink.flush();
32-
_sink.close();
32+
await _sink.close();
3333
}
3434
}

pubspec.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
name: logger
22
description: Small, easy to use and extensible logger which prints beautiful logs.
3-
version: 0.7.0
3+
version: 0.7.0+1
44
author: Simon Leier <[email protected]>
55
homepage: https://github.com/leisim/logger
66

77
environment:
88
sdk: ">=2.1.0 <3.0.0"
99

1010
dev_dependencies:
11-
test: any
11+
test: any
12+
pedantic: ^1.8.0

0 commit comments

Comments
 (0)