From 9df208df6a2e6a1a53577f84dce1ebe4d72d42a2 Mon Sep 17 00:00:00 2001 From: Manideep Polireddi Date: Thu, 16 Oct 2025 19:16:51 +0530 Subject: [PATCH 1/2] Fix typo for retrieving viewModel in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a8445ab..9085db0 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ You can access your `CounterViewModel` anywhere using `BuildContext` as describe ```dart @override Widget build(BuildContext context) { - final CounterViewModel viewModel = context.viewModel(); + final CounterViewModel viewModel = context.getViewModel(); } ``` From 63f499b000bbce7ed3d76487bc0568b8228f1d34 Mon Sep 17 00:00:00 2001 From: Manideep Polireddi <5300499+okmanideep@users.noreply.github.com> Date: Thu, 16 Oct 2025 19:24:38 +0530 Subject: [PATCH 2/2] prepare 1.0.8 release to update documentation in pub.dev --- CHANGELOG.md | 3 +++ README.md | 2 +- pubspec.yaml | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e0d3c0f..26f2257 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 1.0.8 +* Docs: Fix typo in README usage section + ## 1.0.7 * Fix: This widget has been unmounted, so the State no longer has a context (and should be considered defunct). diff --git a/README.md b/README.md index 9085db0..533dd47 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ A set of abstractions, utilities inspired from Android Jetpack 🚀 to help mana

- +

## Features diff --git a/pubspec.yaml b/pubspec.yaml index 33d29a6..f16a7b2 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: jetpack description: A set of abstractions, utilities inspired from android Jetpack to help manage state in flutter applications. -version: 1.0.7 +version: 1.0.8 homepage: https://github.com/praja/jetpack environment: