From 86e9c2cce39b1dd26e5b9d2ea7146dd2b0c15712 Mon Sep 17 00:00:00 2001 From: Sam Rawlins Date: Tue, 15 Aug 2017 15:53:13 -0700 Subject: [PATCH] Bump to 2.2.0; add collection dep (#73) --- CHANGELOG.md | 5 +++++ pubspec.yaml | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eb1384e3..4f4bc0aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 2.2.0 + +* Add new feature to wait for an interaction: `untilCalled`. See the README for + documentation. + ## 2.1.0 * Add documentation for `when`, `verify`, `verifyNever`, `resetMockitoState`. diff --git a/pubspec.yaml b/pubspec.yaml index 793d1d16..279241e5 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: mockito -version: 2.1.0 +version: 2.2.0 authors: - Dmitriy Fibulwinter - Dart Team @@ -8,6 +8,7 @@ homepage: https://github.com/dart-lang/mockito environment: sdk: '>=1.21.0 <2.0.0-dev.infinity' dependencies: + collection: '^1.1.0' matcher: '^0.12.0' meta: '^1.0.4' test: '>=0.12.0 <0.13.0'