diff --git a/CHANGELOG.md b/CHANGELOG.md index 0d5bcbc9..3c06f5f8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +# 0.6.0 +- upgrade dependencies + # 0.5.2 - upgrade dependencies diff --git a/lib/converter_text_to_command.dart b/lib/converter_text_to_command.dart index 4bf59d8e..7eb4e83c 100644 --- a/lib/converter_text_to_command.dart +++ b/lib/converter_text_to_command.dart @@ -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'); diff --git a/pubspec.lock b/pubspec.lock index 0aa8f326..179e38c8 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -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: @@ -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: @@ -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: @@ -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: @@ -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: @@ -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: @@ -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: @@ -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: @@ -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: @@ -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: @@ -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" diff --git a/pubspec.yaml b/pubspec.yaml index 0d3e21ff..b0baf564 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -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 @@ -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