Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).

## [Unreleased]

## [0.10.3] - 2026-07-06

### Fixed
- **A recipe named starting with the word "open" (e.g. `open most recent
post`) always misparsed (PT-23).** `open` is a reserved keyword for the
Expand Down
2 changes: 1 addition & 1 deletion docs/wiki/Home.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Welcome to the FlutterProbe wiki. This documentation covers architecture details

## Project Status

FlutterProbe is in active development. Current version: **0.10.2**.
FlutterProbe is in active development. Current version: **0.10.3**.

### Repository Structure

Expand Down
7 changes: 7 additions & 0 deletions probe_agent/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 0.10.3 - 2026-07-06

No changes to this package's own code — bumped to stay in lockstep with the CLI's
version. This release's fixes (PT-23: recipe calls starting with "open" misparsed;
PT-24: hyphenated recipe names misparsed) are entirely in the Go CLI's parser/lexer.
Full detail in the root CHANGELOG's `[0.10.3]` section.

## 0.10.2 - 2026-07-06

No functional changes — a test-only addition (`test/sequential_focus_autofocus_test.dart`)
Expand Down
2 changes: 1 addition & 1 deletion probe_agent/lib/src/agent_version.dart
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@
/// Lives in its own file (rather than server.dart, where it previously
/// lived) so executor.dart can read it too without an executor.dart <->
/// server.dart import cycle.
const String probeAgentVersion = '0.10.2';
const String probeAgentVersion = '0.10.3';
2 changes: 1 addition & 1 deletion probe_agent/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: >-
On-device E2E test agent for FlutterProbe. Embeds in your Flutter app and
executes test commands via direct widget-tree access with sub-50ms latency.

version: 0.10.2
version: 0.10.3
homepage: https://flutterprobe.dev
repository: https://github.com/AlphaWaveSystems/flutter-probe
issue_tracker: https://github.com/AlphaWaveSystems/flutter-probe/issues
Expand Down
2 changes: 1 addition & 1 deletion vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "flutterprobe",
"displayName": "FlutterProbe",
"description": "High-performance E2E testing for Flutter apps — ProbeScript language support, local & cloud device testing (BrowserStack, Sauce Labs, AWS Device Farm, Firebase Test Lab, LambdaTest), visual regression, test recording, and Studio integration",
"version": "0.10.2",
"version": "0.10.3",
"publisher": "flutterprobe",
"icon": "resources/probe-icon.png",
"engines": { "vscode": "^1.85.0" },
Expand Down
Loading