From 9cfdd8593c3277363cab6b48d7f218330f5f9441 Mon Sep 17 00:00:00 2001 From: Lucas Oliveira Date: Wed, 5 Aug 2026 20:55:45 -0300 Subject: [PATCH] chore(mix): prepare 2.2.0-beta.2 Bump the mix package to 2.2.0-beta.2 and move the GridBox and WrapBox changelog entries out of the already-published 2.2.0-beta.1 section into a new 2.2.0-beta.2 section. Update the Mix skill docs so the WrapBox / GridBox availability notes point at the release that ships them. Co-Authored-By: Claude Opus 5 (1M context) --- packages/mix/CHANGELOG.md | 4 +++- packages/mix/pubspec.yaml | 2 +- skills/mix/SKILL.md | 4 ++-- skills/mix/references/layout.md | 2 +- 4 files changed, 7 insertions(+), 5 deletions(-) diff --git a/packages/mix/CHANGELOG.md b/packages/mix/CHANGELOG.md index 82b5ea4bd..f80b49be6 100644 --- a/packages/mix/CHANGELOG.md +++ b/packages/mix/CHANGELOG.md @@ -1,4 +1,4 @@ -## 2.2.0-beta.1 +## 2.2.0-beta.2 ### New features @@ -13,6 +13,8 @@ collision-safe Box/Wrap names, generated constructors and factories, and a runnable gallery example. +## 2.2.0-beta.1 + ### Fixes - **Box shadow blur styles:** `BoxShadowMix` now preserves non-default diff --git a/packages/mix/pubspec.yaml b/packages/mix/pubspec.yaml index 8f6eaa71e..97af6ed5b 100644 --- a/packages/mix/pubspec.yaml +++ b/packages/mix/pubspec.yaml @@ -1,6 +1,6 @@ name: mix description: An expressive way to effortlessly build design systems in Flutter. -version: 2.2.0-beta.1 +version: 2.2.0-beta.2 homepage: https://github.com/btwld/mix repository: https://github.com/btwld/mix/tree/main/packages/mix diff --git a/skills/mix/SKILL.md b/skills/mix/SKILL.md index 613488217..0792baa78 100644 --- a/skills/mix/SKILL.md +++ b/skills/mix/SKILL.md @@ -22,8 +22,8 @@ description: > Type-safe styling system for Flutter that separates style semantics from widgets. -**Repository target:** current `main` (`mix` pubspec: `2.2.0-beta.1`, Dart >=3.11.0, Flutter >=3.41.0). -Confirm the consuming project's actual version before applying patterns. `WrapBox` and `GridBox` landed on `main` after `2.2.0-beta.1`, so a released dependency may not expose them yet. +**Repository target:** current `main` (`mix` pubspec: `2.2.0-beta.2`, Dart >=3.11.0, Flutter >=3.41.0). +Confirm the consuming project's actual version before applying patterns. `WrapBox` and `GridBox` ship in `2.2.0-beta.2`, so an older resolved dependency may not expose them yet. ## Source of Truth diff --git a/skills/mix/references/layout.md b/skills/mix/references/layout.md index 1441da877..982939513 100644 --- a/skills/mix/references/layout.md +++ b/skills/mix/references/layout.md @@ -7,7 +7,7 @@ Flutter layout widgets for styling concerns. Check the consuming package's `pubspec.yaml` and resolved dependency before using a layout API. This repository's `main` branch includes `WrapBox` and -`GridBox`, but both landed after the `mix 2.2.0-beta.1` release. When working in +`GridBox`, both first shipped in the `mix 2.2.0-beta.2` release. When working in the Mix repository, prefer local source. When working downstream, confirm the installed version exposes the referenced classes.