diff --git a/CHANGELOG.md b/CHANGELOG.md index 58de9c7e..ade74f9f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 0.6.0 +- Add matchers `.existsAtMostOnce()` and `.existsAtMostNTimes(x)` #19 +- Add selector `.withParent(parent)`/`.withParents([...])` #21 +- Add selector `.withChild(child)`/`.withChildren([...])` #21 +- Child selectors now only match children #22 +- You can call `act.tap()` now with any `WidgetSelector` that returns a single widget #23 + ## 0.5.0 - **Breaking** `act.tap` is now async, use `await act.tap()` #17 - New: `spotText('foo')` finds any text on screen using "contains". The new `AnyText` widget combines `Text`, `SelectableText`, `RichText` and `EditableText` #18 diff --git a/pubspec.yaml b/pubspec.yaml index f4410338..ec6f9a93 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: spot description: Chainable finders and better assertions for powerful widget tests. -version: 0.5.0 +version: 0.6.0 repository: https://github.com/passsy/spot issue_tracker: https://github.com/passsy/spot/issues