Skip to content

Commit

Permalink
Merge pull request #21 from DutchCodingCompany/chore/update_deps
Browse files Browse the repository at this point in the history
CHORE: Update dependencies
  • Loading branch information
Guldem authored Aug 16, 2024
2 parents 6d8ea9d + 62bbadd commit 4db5930
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 7 deletions.
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

0 comments on commit 4db5930

Please sign in to comment.