Skip to content

Commit d2c3a08

Browse files
author
GitLab CI
committed
chore: Release v0.5.4
1 parent 0250b6d commit d2c3a08

File tree

8 files changed

+22
-13
lines changed

8 files changed

+22
-13
lines changed

CHANGELOG.md

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,27 @@
1-
## Unreleased
1+
## 0.5.4
2+
3+
**Add automated Twitter/X posting for release announcements**
24

35
### 🤖 CI/CD Improvements
46
- 🐦 **Automated Twitter/X Posting**: Release workflow now auto-posts release announcements to Twitter/X
57
- Posts tweet with version, installation commands, and release link
6-
- Uses Twitter API v2 for reliable posting
8+
- Uses Twitter API v2 with Bearer Token authentication
79
- Includes relevant hashtags (#Flutter #AI #MCP #DartLang)
8-
- Comprehensive setup guide in `docs/TWITTER_SETUP.md`
10+
- Auto-triggered on every release
11+
- Non-blocking (won't fail release if Twitter posting fails)
912

1013
### 📚 Documentation
1114
- 📖 Added `docs/TWITTER_SETUP.md` with complete Twitter API configuration guide
12-
- Step-by-step Bearer Token setup
13-
- Troubleshooting guide
15+
- Step-by-step Bearer Token setup instructions
16+
- Troubleshooting guide for common errors
1417
- Security best practices
15-
- Tweet customization instructions
18+
- Tweet content customization instructions
19+
20+
### 💡 Benefits
21+
- ✅ Automatic social media presence for releases
22+
- ✅ Instant community notification
23+
- ✅ Consistent release announcements
24+
- ✅ Zero manual effort required
1625

1726
## 0.5.3
1827

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.5.3
265+
flutter_skill: ^0.5.4
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.5.3"
8+
version = "0.5.4"
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.5.3</version>
4+
<version>0.5.4</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
@@ -7,7 +7,7 @@ import '../flutter_skill_client.dart';
77
import '../diagnostics/error_reporter.dart';
88
import 'setup.dart';
99

10-
const String _currentVersion = '0.5.3';
10+
const String _currentVersion = '0.5.4';
1111

1212
/// Session information for multi-session support
1313
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.5.3",
3+
"version": "0.5.4",
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.5.3
3+
version: 0.5.4
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.5.3",
5+
"version": "0.5.4",
66
"publisher": "ai-dashboad",
77
"icon": "images/icon.png",
88
"repository": {

0 commit comments

Comments
 (0)