Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CHORE: Update dependencies #21

Merged
merged 4 commits into from
Aug 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## 2.0.1
- Updated dependencies
- sdk to `>=3.4.0 <4.0.0`
- `test` to `1.25.7`
- `meta` to `1.15.0`
- `very_good_analysis` to `6.0.0`

## 2.0.0
- Rework internal implementation of the packages. Resulting in no need for specifying the number of parameters in the function name.
```dart
Expand Down
4 changes: 2 additions & 2 deletions lib/src/errors/stack_trace_extension.dart
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ extension StackTraceExtension on StackTrace {
final trace = Trace.from(this);

// We are looking for frames from the body of the supplied test function.
int index = 0;
bool found = false;
var index = 0;
var found = false;
while (!found) {
index = trace.frames.indexWhere(
(f) => f.package == 'parameterized_test',
Expand Down
10 changes: 5 additions & 5 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
name: parameterized_test
description: Run a test multiple times based on provided parameter list. Inspired by JUnit ParameterizedTest.
version: 2.0.0
version: 2.0.1
homepage: https://www.github.com/DutchCodingCompany/parameterized_test

environment:
sdk: '>=3.0.0 <4.0.0'
sdk: '>=3.4.0 <4.0.0'

dependencies:
meta: ^1.10.1
meta: ^1.15.0
stack_trace: ^1.11.1
test: ^1.24.6
test: ^1.25.7

dev_dependencies:
csv: ^6.0.0
very_good_analysis: ^5.1.0
very_good_analysis: ^6.0.0
Loading