Skip to content

Commit f0a575e

Browse files
author
GitLab CI
committed
chore: Release v0.6.2
Improve pub.dev score
1 parent 73d2fc6 commit f0a575e

File tree

8 files changed

+20
-7
lines changed

8 files changed

+20
-7
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
## 0.6.2
2+
3+
**Improve pub.dev score**
4+
5+
### Changes
6+
- Add `example/example.dart` for pub.dev package scoring
7+
- Widen `vm_service` dependency to `>=14.0.0 <16.0.0` (supports v15)
8+
- Remove unused persistent character fields (fixes 6 analyzer warnings)
9+
- Fix "multiple pubspec.yaml" issue by adding `demo_app/` to `.pubignore`
10+
- Replace `Color.withValues()` with `withOpacity()` for Flutter 3.24 compatibility
11+
12+
---
13+
114
## 0.6.1
215

316
**Native platform interaction tools and VM Service reconnection fix**

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ flutter-skill launch /path/to/project
262262
1. Add dependency:
263263
```yaml
264264
dependencies:
265-
flutter_skill: ^0.6.1
265+
flutter_skill: ^0.6.2
266266
```
267267
268268
2. Initialize in main.dart:

intellij-plugin/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ plugins {
55
}
66

77
group = "com.aidashboad"
8-
version = "0.6.1"
8+
version = "0.6.2"
99

1010
repositories {
1111
mavenCentral()

intellij-plugin/src/main/resources/META-INF/plugin.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<idea-plugin>
22
<id>com.aidashboad.flutterskill</id>
33
<name>Flutter Skill - AI App Automation</name>
4-
<version>0.6.1</version>
4+
<version>0.6.2</version>
55
<vendor email="support@ai-dashboad.com" url="https://github.com/ai-dashboad/flutter-skill">ai-dashboad</vendor>
66

77
<description><![CDATA[

lib/src/cli/server.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import '../native_driver.dart';
88
import '../diagnostics/error_reporter.dart';
99
import 'setup.dart';
1010

11-
const String _currentVersion = '0.6.1';
11+
const String _currentVersion = '0.6.2';
1212

1313
/// Session information for multi-session support
1414
class SessionInfo {

npm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "flutter-skill-mcp",
3-
"version": "0.6.1",
3+
"version": "0.6.2",
44
"description": "MCP Server for Flutter app automation - Give your AI Agent eyes and hands inside your Flutter app",
55
"main": "index.js",
66
"bin": {

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: flutter_skill
22
description: Give your AI Agent eyes and hands inside your Flutter app.
3-
version: 0.6.1
3+
version: 0.6.2
44
homepage: https://github.com/ai-dashboad/flutter-skill
55
repository: https://github.com/ai-dashboad/flutter-skill
66
# publish_to: 'none' # Remove this when ready to publish to pub.dev

vscode-extension/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "flutter-skill",
33
"displayName": "Flutter Skill - AI App Automation",
44
"description": "Give your AI Agent eyes and hands inside your Flutter app. Bridge between AI coding assistants (Claude Code, Cursor, Windsurf) and running Flutter applications with 25+ MCP tools for UI inspection, gestures, screenshots, and more.",
5-
"version": "0.6.1",
5+
"version": "0.6.2",
66
"publisher": "ai-dashboad",
77
"icon": "images/icon.png",
88
"repository": {

0 commit comments

Comments
 (0)