From 2809c38a4c359c68e46cb238375f0f535c89b7f0 Mon Sep 17 00:00:00 2001 From: Tom Ha Date: Thu, 26 Mar 2026 19:53:59 +0000 Subject: [PATCH 1/3] chore: Relax Dart version constraint to `^3.9.0` --- pubspec.lock | 2 +- pubspec.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pubspec.lock b/pubspec.lock index fc53e37..b934d35 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -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" diff --git a/pubspec.yaml b/pubspec.yaml index a34fc28..50121e5 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -9,7 +9,7 @@ topics: - mocking environment: - sdk: ^3.11.0 + sdk: ^3.9.0 flutter: ">=3.0.0" dependencies: From e1e46847d2e6e60eae48152c53b533ee22f5f4e4 Mon Sep 17 00:00:00 2001 From: Tom Ha Date: Thu, 26 Mar 2026 19:59:12 +0000 Subject: [PATCH 2/3] chore: Roll version ++ update `CHANGELOG.md` --- CHANGELOG.md | 5 +++++ example/pubspec.lock | 2 +- pubspec.yaml | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8abbee2..2f4596b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 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)). +* Relaxes Dart SDK version constraint to `^3.9.0`. + ## 1.0.0-dev.3 * Updates `pubspec.yaml` for publishing to pub.dev. diff --git a/example/pubspec.lock b/example/pubspec.lock index 1d45638..30e921f 100644 --- a/example/pubspec.lock +++ b/example/pubspec.lock @@ -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 diff --git a/pubspec.yaml b/pubspec.yaml index 50121e5..33691da 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -2,7 +2,7 @@ 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 From 70a5346e0fa6a05a930727e53486f15fb1fef69e Mon Sep 17 00:00:00 2001 From: Tom Ha Date: Tue, 7 Apr 2026 08:13:17 +0100 Subject: [PATCH 3/3] docs: Update `CHANGELOG.md` --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f4596b..e14d260 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ ## 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