Skip to content

Commit 6cb9f97

Browse files
committed
. e v1.1.3: updated docs
1 parent ded7bb5 commit 6cb9f97

File tree

7 files changed

+46
-15
lines changed

7 files changed

+46
-15
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ ApprovalTests is designed for two level: Dart and Flutter. <br>
4343

4444
| Package | Version | Description |
4545
| ------------------------------------------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ |
46-
| [approval_tests](https://github.com/approvals/ApprovalTests.Dart/tree/feature/approval_tests_flutter/packages/approval_tests) | [![Pub](https://img.shields.io/pub/v/approval_tests.svg?style=flat-square)](https://pub.dev/packages/approval_tests) | **Dart** package for approval testing of `unit` tests *(main)* |
47-
| [approval_tests_flutter](https://github.com/approvals/ApprovalTests.Dart/tree/feature/approval_tests_flutter/packages/approval_tests_flutter) | [![Pub](https://img.shields.io/pub/v/approval_tests_flutter.svg)](https://pub.dev/packages/approval_tests_flutter) | **Flutter** package for approval testing of `widget`, `integration` tests |
46+
| [approval_tests](https://github.com/approvals/ApprovalTests.Dart/tree/main/packages/approval_tests) | [![Pub](https://img.shields.io/pub/v/approval_tests.svg?style=flat-square)](https://pub.dev/packages/approval_tests) | **Dart** package for approval testing of `unit` tests *(main)* |
47+
| [approval_tests_flutter](https://github.com/approvals/ApprovalTests.Dart/tree/main/packages/approval_tests_flutter) | [![Pub](https://img.shields.io/pub/v/approval_tests_flutter.svg)](https://pub.dev/packages/approval_tests_flutter) | **Flutter** package for approval testing of `widget`, `integration` tests |
4848

4949

5050
## 📋 How it works
@@ -108,14 +108,14 @@ Add the following to your `pubspec.yaml` file:
108108

109109
```yaml
110110
dependencies:
111-
approval_tests: ^1.1.0
112-
approval_tests_flutter: ^1.1.0 # If you need. This package is needed for widget and integration tests. You can remove `approval_tests` if you use flutter package.
111+
approval_tests: ^1.1.3
112+
approval_tests_flutter: ^1.1.3 # If you need. This package is needed for widget and integration tests. You can remove `approval_tests` if you use flutter package.
113113
```
114114
115115
## 👀 Getting Started
116116
117117
The best way to get started is to download and open the example project:
118-
* [Flutter example project](https://github.com/approvals/ApprovalTests.Dart/tree/feature/approval_tests_flutter/examples/flutter_example)
118+
* [Flutter example project](https://github.com/approvals/ApprovalTests.Dart/tree/main/examples/flutter_example)
119119
120120
## 📚 How to use
121121

packages/approval_tests/CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## 1.1.3
2+
- Updated README.md file: fix links.
3+
4+
## 1.1.2
5+
- Added CLI additional options:
6+
Usage: `dart run approval_tests:review [arguments]`
7+
- Arguments:
8+
- `--help` Print this usage information.
9+
- `--list` Print a list of project .received.txt files.
10+
- `<index>` Review an .received.txt file indexed by --list.
11+
- `<path/to/.received.txt>` Review an .received.txt file.
12+
113
## 1.1.1
214
- Updated README.md file.
315

packages/approval_tests/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ ApprovalTests is designed for two level: Dart and Flutter. <br>
4141

4242
| Package | Version | Description |
4343
| ------------------------------------------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ |
44-
| [approval_tests](https://github.com/approvals/ApprovalTests.Dart/tree/feature/approval_tests_flutter/packages/approval_tests) | [![Pub](https://img.shields.io/pub/v/approval_tests.svg?style=flat-square)](https://pub.dev/packages/approval_tests) | **Dart** package for approval testing of `unit` tests *(main)* |
45-
| [approval_tests_flutter](https://github.com/approvals/ApprovalTests.Dart/tree/feature/approval_tests_flutter/packages/approval_tests_flutter) | [![Pub](https://img.shields.io/pub/v/approval_tests_flutter.svg?style=flat-square)](https://pub.dev/packages/approval_tests_flutter) | **Flutter** package for approval testing of `widget`, `integration` tests |
44+
| [approval_tests](https://github.com/approvals/ApprovalTests.Dart/tree/main/packages/approval_tests) | [![Pub](https://img.shields.io/pub/v/approval_tests.svg?style=flat-square)](https://pub.dev/packages/approval_tests) | **Dart** package for approval testing of `unit` tests *(main)* |
45+
| [approval_tests_flutter](https://github.com/approvals/ApprovalTests.Dart/tree/main/packages/approval_tests_flutter) | [![Pub](https://img.shields.io/pub/v/approval_tests_flutter.svg)](https://pub.dev/packages/approval_tests_flutter) | **Flutter** package for approval testing of `widget`, `integration` tests |
4646

4747

4848
## 📋 How it works

packages/approval_tests/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# * 0.0.4 for a minor release.
44
name: approval_tests
55
description: Approval Tests implementation in Dart. Inspired by ApprovalTests.
6-
version: 1.1.1
6+
version: 1.1.3
77
repository: https://github.com/approvals/ApprovalTests.Dart
88
homepage: https://github.com/approvals/ApprovalTests.Dart.git
99
issue_tracker: https://github.com/approvals/ApprovalTests.Dart/issues

packages/approval_tests_flutter/CHANGELOG.md

+13-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,16 @@
1-
## 1.1.0
1+
## 1.1.3
2+
- Updated README.md file: fix links.
3+
4+
## 1.1.2
5+
- Added CLI additional options:
6+
Usage: `dart run approval_tests:review [arguments]`
7+
- Arguments:
8+
- `--help` Print this usage information.
9+
- `--list` Print a list of project .received.txt files.
10+
- `<index>` Review an .received.txt file indexed by --list.
11+
- `<path/to/.received.txt>` Review an .received.txt file.
12+
13+
## 1.1.1
214
- Updated README.md file.
315

416

packages/approval_tests_flutter/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ ApprovalTests is designed for two level: Dart and Flutter. <br>
4343

4444
| Package | Version | Description |
4545
| ------------------------------------------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ |
46-
| [approval_tests](https://github.com/approvals/ApprovalTests.Dart/tree/feature/approval_tests_flutter/packages/approval_tests) | [![Pub](https://img.shields.io/pub/v/approval_tests.svg?style=flat-square)](https://pub.dev/packages/approval_tests) | **Dart** package for approval testing of `unit` tests *(main)* |
47-
| [approval_tests_flutter](https://github.com/approvals/ApprovalTests.Dart/tree/feature/approval_tests_flutter/packages/approval_tests_flutter) | [![Pub](https://img.shields.io/pub/v/approval_tests_flutter.svg?style=flat-square)](https://pub.dev/packages/approval_tests_flutter) | **Flutter** package for approval testing of `widget`, `integration` tests |
46+
| [approval_tests](https://github.com/approvals/ApprovalTests.Dart/tree/main/packages/approval_tests) | [![Pub](https://img.shields.io/pub/v/approval_tests.svg?style=flat-square)](https://pub.dev/packages/approval_tests) | **Dart** package for approval testing of `unit` tests *(main)* |
47+
| [approval_tests_flutter](https://github.com/approvals/ApprovalTests.Dart/tree/main/packages/approval_tests_flutter) | [![Pub](https://img.shields.io/pub/v/approval_tests_flutter.svg)](https://pub.dev/packages/approval_tests_flutter) | **Flutter** package for approval testing of `widget`, `integration` tests |
4848

4949

5050
## 📋 How it works
@@ -114,7 +114,7 @@ dependencies:
114114
## 👀 Getting Started
115115
116116
The best way to get started is to download and open the example project:
117-
* [Flutter example project](https://github.com/approvals/ApprovalTests.Dart/tree/feature/approval_tests_flutter/examples/flutter_example)
117+
* [Flutter example project](https://github.com/approvals/ApprovalTests.Dart/tree/main/examples/flutter_example)
118118
119119
## 📚 How to use
120120

packages/approval_tests_flutter/pubspec.yaml

+10-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,17 @@
11
name: approval_tests_flutter
22
description: Approval Tests implementation in Dart (Flutter). Inspired by ApprovalTests.
3-
version: 1.1.1
3+
version: 1.1.3
44
repository: https://github.com/approvals/ApprovalTests.Dart
55
homepage: https://github.com/approvals/ApprovalTests.Dart.git
66
issue_tracker: https://github.com/approvals/ApprovalTests.Dart/issues
7-
publish_to: 'none'
7+
# publish_to: 'none'
8+
9+
topics:
10+
- test
11+
- approval
12+
- approvals
13+
- tests
14+
- approval-tests
815

916
environment:
1017
sdk: '>=3.0.0 <4.0.0'
@@ -17,7 +24,7 @@ dependencies:
1724
sdk: flutter
1825
flutter_test:
1926
sdk: flutter
20-
approval_tests: ^1.1.0
27+
approval_tests: ^1.1.2
2128
# path: ../approval_tests
2229
test_api: ^0.7.0
2330
test: ^1.25.2

0 commit comments

Comments
 (0)