Skip to content

Commit

Permalink
Dependency upgrades
Browse files Browse the repository at this point in the history
  • Loading branch information
Rexios80 committed Nov 12, 2024
1 parent 79542ac commit 4e7b30b
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions fast_rx_jaspr/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 0.1.13
- Upgrades `jaspr`

## 0.1.12
- Upgrades `jaspr`

Expand Down
2 changes: 1 addition & 1 deletion fast_rx_jaspr/example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ environment:
sdk: '>=2.17.0 <3.0.0'

dependencies:
jaspr: ^0.15.1
jaspr: ^0.16.1
fast_rx_jaspr:
path: ../

Expand Down
6 changes: 3 additions & 3 deletions fast_rx_jaspr/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
name: fast_rx_jaspr
description: Reactive Jaspr components and convenience components for fast_rx
version: 0.1.12
version: 0.1.13
homepage: https://github.com/Rexios80/fast_ui_jaspr/tree/master/fast_rx_jaspr

environment:
sdk: ">=2.18.0 <4.0.0"

dependencies:
jaspr: ^0.15.1
jaspr: ^0.16.1
fast_rx: ^0.6.0

dev_dependencies:
jaspr_test: ^0.15.1
jaspr_test: ^0.16.1
rexios_lints: ^8.2.0
test: ^1.16.0
2 changes: 1 addition & 1 deletion fast_rx_jaspr/test/fast_builder_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import 'package:jaspr_test/jaspr_test.dart';
void main() {
testComponents('FastBuilder', (tester) async {
final reactive = 0.rx;
await tester.pumpComponent(FastBuilder(() => [Text('${reactive.value}')]));
tester.pumpComponent(FastBuilder(() => [Text('${reactive.value}')]));
expect(find.text('0'), findsOneComponent);
reactive.value = 1;
await tester.pump();
Expand Down

0 comments on commit 4e7b30b

Please sign in to comment.