Skip to content

Commit

Permalink
fix: #869
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobaraujo7 committed Aug 5, 2023
1 parent 88d685a commit d7e1aad
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 11 deletions.
1 change: 1 addition & 0 deletions flutter_modular/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## [6.0.2] - 2023-08-01

- fix: [#867](https://github.com/Flutterando/modular/issues/867)
- fix: [#869](https://github.com/Flutterando/modular/issues/869)


## [6.0.1] - 2023-08-01
Expand Down
2 changes: 1 addition & 1 deletion flutter_modular/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ environment:
sdk: ">=3.0.0 <4.0.0"

dependencies:
modular_core: ">=3.0.1+1 <4.0.0"
modular_core: ">=3.0.2+1 <4.0.0"
meta: ">=1.3.0 <2.0.0"
result_dart: ">=1.0.4 <2.0.0"
flutter:
Expand Down
8 changes: 0 additions & 8 deletions flutter_modular/test/src/presenter/modular_base_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -112,14 +112,6 @@ void main() {
reset(unbindModule);
});

test('debugPrintModular', () {
modularBase.debugPrintModular('text');
expect((modularBase as ModularBase).flags.isDebug, true);
(modularBase as ModularBase).flags.isDebug = false;
modularBase.debugPrintModular('text');
expect((modularBase as ModularBase).flags.isDebug, false);
});

test('to', () {
expect(modularBase.to, isA<IModularNavigator>());
});
Expand Down
4 changes: 2 additions & 2 deletions modular_core/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
name: modular_core
description: Smart project structure with dependency injection and route management
version: 3.0.1+1
version: 3.0.2+1
homepage: https://github.com/Flutterando/modular

environment:
sdk: ">=3.0.0 <4.0.0"

dependencies:
auto_injector: ">=1.1.0+4 <2.0.0"
auto_injector: ">=1.1.1 <2.0.0"
characters: ">=1.1.0 <2.0.0"
meta: ">=1.3.0 <2.0.0"

Expand Down

0 comments on commit d7e1aad

Please sign in to comment.