diff --git a/CHANGELOG_EN.md b/CHANGELOG_EN.md index 23df7e1..d723b6e 100644 --- a/CHANGELOG_EN.md +++ b/CHANGELOG_EN.md @@ -1,3 +1,16 @@ +# What's New in v0.7.0 + +## Visual regression +- **Screenshot bank** — capture reference screenshots and compare later runs against them to catch unintended visual changes, with a side-by-side image diff. + +## Performance +- **Perf panel improvements** and a configurable **`APP_ID`** so performance metrics target the right app. + +## Maintenance +- Dependency and CI updates (js-yaml, vite, actions/checkout). + +--- + # What's New in v0.5.5 ## iOS diff --git a/LICENSE b/LICENSE index 5499dcd..88df14e 100644 --- a/LICENSE +++ b/LICENSE @@ -15,7 +15,7 @@ Additional Use Grant: You may use the Licensed Work in production, (in original or modified form) as a commercial product or as part of a commercial offering. -Change Date: 2030-06-28 +Change Date: 2030-07-08 Change License: Apache License, Version 2.0 diff --git a/package.json b/package.json index a623109..e07b003 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "maestro-deck", "private": true, - "version": "0.6.0", + "version": "0.7.0", "type": "module", "description": "Source-available visual IDE for Maestro mobile tests", "license": "BUSL-1.1", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 3d28263..5853b29 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "maestro-deck" -version = "0.6.0" +version = "0.7.0" description = "Source-available visual IDE for Maestro mobile tests" authors = ["Ethan Morisset "] license = "BUSL-1.1" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 8f00856..106ecad 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "https://schema.tauri.app/config/2", "productName": "Maestro Deck", - "version": "0.6.0", + "version": "0.7.0", "identifier": "dev.blueshork.maestrodeck", "build": { "beforeDevCommand": "pnpm dev",