Skip to content
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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 1.0.0

* Fixes an issue where notifier class family argument symbols weren't being resolved and prefixed with imports ([#21](https://github.com/Apadmi-Engineering/mirage/issues/21)).
* Fixes an issue where notifiers would sometimes be destroyed part way through tests ([#24](https://github.com/Apadmi-Engineering/mirage/issues/24)).
* Relaxes Dart SDK version constraint to `^3.9.0`.

## 1.0.0-dev.3

* Updates `pubspec.yaml` for publishing to pub.dev.
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ packages:
path: ".."
relative: true
source: path
version: "1.0.0-dev.3"
version: "1.0.0"
flutter:
dependency: "direct main"
description: flutter
Expand Down
2 changes: 1 addition & 1 deletion pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -681,5 +681,5 @@ packages:
source: hosted
version: "3.1.3"
sdks:
dart: ">=3.11.0 <4.0.0"
dart: ">=3.9.0 <4.0.0"
flutter: ">=3.18.0-18.0.pre.54"
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ name: flumepod
description: "A code generator to create Mockito compliant mocks of Riverpod Notifiers."
repository: https://github.com/Apadmi-Engineering/mirage
issue_tracker: https://github.com/Apadmi-Engineering/mirage/issues
version: 1.0.0-dev.3
version: 1.0.0
topics:
- riverpod
- testing
- mocking

environment:
sdk: ^3.11.0
sdk: ^3.9.0
flutter: ">=3.0.0"

dependencies:
Expand Down
Loading