Skip to content

Commit

Permalink
upgrade deps
Browse files Browse the repository at this point in the history
  • Loading branch information
sensuikan1973 committed Mar 28, 2021
1 parent 24c4556 commit ccb5663
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 28 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# 0.6.0
- upgrade dependencies

# 0.5.2
- upgrade dependencies

Expand Down
3 changes: 2 additions & 1 deletion lib/converter_text_to_command.dart
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ String convertTextToCommand(String line, String bookFile) {
}
if (_bookDeviateRegexp.hasMatch(str)) {
final match = _bookDeviateRegexp.firstMatch(str);
return bookDeviate(bookFile, match!.group(7) ?? '' , int.parse(match.group(2) ?? ''), int.parse(match.group(4) ?? ''));
return bookDeviate(
bookFile, match!.group(7) ?? '', int.parse(match.group(2) ?? ''), int.parse(match.group(4) ?? ''));
}

throw Exception('$str is not supported format');
Expand Down
46 changes: 23 additions & 23 deletions pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ packages:
name: _fe_analyzer_shared
url: "https://pub.dartlang.org"
source: hosted
version: "14.0.0"
version: "19.0.0"
analyzer:
dependency: "direct dev"
description:
name: analyzer
url: "https://pub.dartlang.org"
source: hosted
version: "0.41.2"
version: "1.3.0"
args:
dependency: transitive
description:
Expand Down Expand Up @@ -70,7 +70,7 @@ packages:
name: coverage
url: "https://pub.dartlang.org"
source: hosted
version: "0.15.2"
version: "1.0.2"
crypto:
dependency: transitive
description:
Expand All @@ -84,21 +84,21 @@ packages:
name: file
url: "https://pub.dartlang.org"
source: hosted
version: "6.0.0"
version: "6.1.0"
glob:
dependency: transitive
description:
name: glob
url: "https://pub.dartlang.org"
source: hosted
version: "2.0.0"
version: "2.0.1"
http_multi_server:
dependency: transitive
description:
name: http_multi_server
url: "https://pub.dartlang.org"
source: hosted
version: "2.2.0"
version: "3.0.0"
http_parser:
dependency: transitive
description:
Expand All @@ -112,7 +112,7 @@ packages:
name: io
url: "https://pub.dartlang.org"
source: hosted
version: "0.3.4"
version: "1.0.0"
js:
dependency: transitive
description:
Expand All @@ -126,7 +126,7 @@ packages:
name: logging
url: "https://pub.dartlang.org"
source: hosted
version: "1.0.0"
version: "1.0.1"
matcher:
dependency: transitive
description:
Expand Down Expand Up @@ -154,14 +154,14 @@ packages:
name: node_preamble
url: "https://pub.dartlang.org"
source: hosted
version: "1.4.13"
version: "2.0.0"
package_config:
dependency: transitive
description:
name: package_config
url: "https://pub.dartlang.org"
source: hosted
version: "1.9.3"
version: "2.0.0"
path:
dependency: transitive
description:
Expand All @@ -175,7 +175,7 @@ packages:
name: pedantic
url: "https://pub.dartlang.org"
source: hosted
version: "1.10.0"
version: "1.11.0"
pedantic_sensuikan1973:
dependency: "direct dev"
description:
Expand Down Expand Up @@ -203,28 +203,28 @@ packages:
name: shelf
url: "https://pub.dartlang.org"
source: hosted
version: "1.0.0"
version: "1.1.0"
shelf_packages_handler:
dependency: transitive
description:
name: shelf_packages_handler
url: "https://pub.dartlang.org"
source: hosted
version: "2.0.1"
version: "3.0.0"
shelf_static:
dependency: transitive
description:
name: shelf_static
url: "https://pub.dartlang.org"
source: hosted
version: "0.2.9+2"
version: "1.0.0"
shelf_web_socket:
dependency: transitive
description:
name: shelf_web_socket
url: "https://pub.dartlang.org"
source: hosted
version: "0.2.4"
version: "1.0.1"
source_map_stack_trace:
dependency: transitive
description:
Expand Down Expand Up @@ -280,21 +280,21 @@ packages:
name: test
url: "https://pub.dartlang.org"
source: hosted
version: "1.16.2"
version: "1.16.8"
test_api:
dependency: transitive
description:
name: test_api
url: "https://pub.dartlang.org"
source: hosted
version: "0.2.19"
version: "0.3.0"
test_core:
dependency: transitive
description:
name: test_core
url: "https://pub.dartlang.org"
source: hosted
version: "0.3.13"
version: "0.3.19"
typed_data:
dependency: transitive
description:
Expand All @@ -308,7 +308,7 @@ packages:
name: vm_service
url: "https://pub.dartlang.org"
source: hosted
version: "6.0.1"
version: "6.1.0+1"
watcher:
dependency: transitive
description:
Expand All @@ -322,20 +322,20 @@ packages:
name: web_socket_channel
url: "https://pub.dartlang.org"
source: hosted
version: "1.2.0"
version: "2.0.0"
webkit_inspection_protocol:
dependency: transitive
description:
name: webkit_inspection_protocol
url: "https://pub.dartlang.org"
source: hosted
version: "0.7.5"
version: "1.0.0"
yaml:
dependency: transitive
description:
name: yaml
url: "https://pub.dartlang.org"
source: hosted
version: "3.0.0"
version: "3.1.0"
sdks:
dart: ">=2.12.0-0.0 <3.0.0"
dart: ">=2.12.0 <3.0.0"
8 changes: 4 additions & 4 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: edax_runner
version: 0.5.2
version: 0.6.0
description: tiny tool for edax-reversi auto learning
author: Naoki Shimizu
homepage: https://github.com/sensuikan1973/edax_runner
Expand All @@ -8,7 +8,7 @@ environment:
sdk: '>=2.12.0-0 <3.0.0'

dev_dependencies:
analyzer: ^0.41.2
coverage: ^0.15.2 # See: https://github.com/dart-lang/test/issues/1265
analyzer: ^1.0.3
coverage: ^1.0.2 # See: https://github.com/dart-lang/test/issues/1265
pedantic_sensuikan1973: any
test: ^1.16.2
test: ^1.16.8

0 comments on commit ccb5663

Please sign in to comment.