diff --git a/.gitignore b/.gitignore index 25a1df3..0659a33 100644 --- a/.gitignore +++ b/.gitignore @@ -1,9 +1,9 @@ .buildlog .DS_Store .idea -.pub/ .settings/ build/ packages .packages pubspec.lock +.dart_tool/ diff --git a/CHANGELOG.md b/CHANGELOG.md index 56db6e6..c1f6f7c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.2 + +* Support test `1.x.x`. + ## 1.0.1 * Support latest `pkg/shelf`. diff --git a/pubspec.yaml b/pubspec.yaml index 321883e..f46e84e 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: shelf_test_handler -version: 1.0.2-dev +version: 1.0.2 description: A Shelf handler that makes it easy to test HTTP interactions. author: Dart Team homepage: https://github.com/dart-lang/shelf_test_handler @@ -10,7 +10,7 @@ environment: dependencies: http_multi_server: "^2.0.0" shelf: ">=0.6.0 <0.8.0" - test: "^0.12.19" + test: ">=0.12.19 <2.0.0" dev_dependencies: http: "^0.11.3"