Skip to content

Commit 4473fd4

Browse files
committed
Version bump
1 parent 19f9add commit 4473fd4

3 files changed

Lines changed: 6 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## [1.9.0] - Upgrade dependencies
1+
## [2.0.0] - Upgrade dependencies
22

33
* **BREAKING CHANGE**: The package doesn't provide pre-built steps anymore. Steps will appear in the `step` folder.
44
* Drop unused dependencies

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -299,12 +299,13 @@ targets:
299299

300300
If you have many packages you might want to reuse the whole list of external steps. For that you'll have to create a `bdd_options.yaml` file in the root folder of your project with the following content:
301301
```yaml
302-
include: package:bdd_widget_test/bdd_options.yaml # if you want to reuse default steps as well
302+
include: package:<package_a>/bdd_options.yaml # will include all steps defined in bdd_options.yaml of package_a
303303
externalSteps:
304-
- package:<your_package>/<your_step>.dart
304+
- package:<package_b>/<your_step>.dart
305+
- package:<package_c>/<your_step>.dart
305306
```
306307

307-
Alternatively, ff you need just to include an external config, use the `include` option in the `build.yaml` config:
308+
Alternatively, if you need just to include an external config, use the `include` option in the `build.yaml` config:
308309
```yaml
309310
targets:
310311
$default:

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: bdd_widget_test
22
description: A BDD-style widget testing library. Generates Flutter widget tests from *.feature files.
3-
version: 1.9.0
3+
version: 2.0.0
44
repository: https://github.com/olexale/bdd_widget_test
55
issue_tracker: https://github.com/olexale/bdd_widget_test/issues
66

0 commit comments

Comments
 (0)