diff --git a/CHANGELOG.md b/CHANGELOG.md index c72bcef..a4b4b81 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ This project follows [Semantic Versioning 2.0.0](https://semver.org/spec/v2.0.0. --- -## [Unreleased] +## [0.0.12] - 2026-08-20 ### Fixed @@ -282,6 +282,7 @@ Both write through `.tmp` + atomic rename; never hand-edit. --- +[0.0.12]: https://github.com/fluttersdk/artisan/compare/0.0.11...0.0.12 [0.0.11]: https://github.com/fluttersdk/artisan/compare/0.0.10...0.0.11 [0.0.10]: https://github.com/fluttersdk/artisan/compare/0.0.9...0.0.10 [0.0.9]: https://github.com/fluttersdk/artisan/compare/0.0.8...0.0.9 diff --git a/example/packages/awesome_plugin/pubspec.yaml b/example/packages/awesome_plugin/pubspec.yaml index 98d1a4d..b1dff6f 100644 --- a/example/packages/awesome_plugin/pubspec.yaml +++ b/example/packages/awesome_plugin/pubspec.yaml @@ -9,7 +9,7 @@ environment: dependencies: fluttersdk_artisan: path: ../../.. - version: 0.0.11 + version: 0.0.12 dev_dependencies: lints: ^6.0.0 diff --git a/example/pubspec.lock b/example/pubspec.lock index 33f6f8e..b723a6b 100644 --- a/example/pubspec.lock +++ b/example/pubspec.lock @@ -153,7 +153,7 @@ packages: path: ".." relative: true source: path - version: "0.0.11" + version: "0.0.12" frontend_server_client: dependency: transitive description: diff --git a/example/pubspec.yaml b/example/pubspec.yaml index 2ffc1a2..5b08bb4 100644 --- a/example/pubspec.yaml +++ b/example/pubspec.yaml @@ -37,7 +37,7 @@ dependencies: fluttersdk_artisan: path: .. - version: 0.0.11 + version: 0.0.12 awesome_plugin: path: ./packages/awesome_plugin diff --git a/lib/src/mcp/mcp_server.dart b/lib/src/mcp/mcp_server.dart index 53c811c..e311466 100644 --- a/lib/src/mcp/mcp_server.dart +++ b/lib/src/mcp/mcp_server.dart @@ -74,7 +74,7 @@ final class McpServer extends MCPServer with ToolsSupport { // cut, and test/mcp/mcp_server_version_test.dart fails the // build when it is not. The 0.0.9 cut missed it and shipped a // handshake one release behind. - version: '0.0.11', + version: '0.0.12', ), ); diff --git a/pubspec.yaml b/pubspec.yaml index 471977f..524b4ca 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: fluttersdk_artisan description: "Composable Dart CLI framework and stdio MCP server for Flutter. Scaffolding, code generation, transactional plugin installs, hot reload, REPL, and AI agent tooling." -version: 0.0.11 +version: 0.0.12 homepage: https://fluttersdk.com/artisan repository: https://github.com/fluttersdk/artisan issue_tracker: https://github.com/fluttersdk/artisan/issues diff --git a/skills/fluttersdk-artisan/SKILL.md b/skills/fluttersdk-artisan/SKILL.md index 02f043d..5a63115 100644 --- a/skills/fluttersdk-artisan/SKILL.md +++ b/skills/fluttersdk-artisan/SKILL.md @@ -5,7 +5,7 @@ version: 0.0.5 when_to_use: "Any task where the agent boots, restarts, inspects, or evaluates a running Flutter app via artisan: calling `artisan_*` MCP tools (start, status, doctor, tinker, hot-restart) in sequence, invoking `./bin/fsa ` from Bash, recovering from missing state.json or stale PID, picking substrate vs dispatcher MCP wiring, choosing between `artisan_tinker` (VM Service evaluate) and `dusk_evaluate` (E2E driver) for an inspect-or-mutate flow." --- - + # fluttersdk_artisan