diff --git a/CHANGELOG.md b/CHANGELOG.md index 38b21cc7..49ce5dbb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,19 @@ -## 3.0.0 +## 3.0.0-alpha+3 -* `thenReturn` now throws an `ArgumentError` if either a `Future` or `Stream` - is provided. `thenReturn` calls with futures and streams should be changed to - `thenAnswer`. See the README for more information. * `thenReturn` and `thenAnswer` now support generics and infer the correct types from the `when` call. * Completely remove the mirrors implementation of Mockito (`mirrors.dart`). +## 3.0.0-alpha+2 + +* Support stubbing of void methods in Dart 2. + +## 3.0.0-alpha + +* `thenReturn` now throws an `ArgumentError` if either a `Future` or `Stream` + is provided. `thenReturn` calls with futures and streams should be changed to + `thenAnswer`. See the README for more information. + ## 2.2.0 * Add new feature to wait for an interaction: `untilCalled`. See the README for diff --git a/pubspec.yaml b/pubspec.yaml index 5f2ec9ae..a78e1cb9 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: mockito -version: 3.0.0-dev +version: 3.0.0-alpha+3 authors: - Dmitriy Fibulwinter - Dart Team