diff --git a/.github/.release-please-manifest.json b/.github/.release-please-manifest.json index f1c1e58..210d290 100644 --- a/.github/.release-please-manifest.json +++ b/.github/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.5.0" + ".": "0.5.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index b2ecc6c..f18caf3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,15 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.5.1](https://github.com/erdembas/runhq/compare/v0.5.0...v0.5.1) (2026-04-22) + + +### Bug Fixes + +* **dashboard:** enhance grouping functionality and improve log message format ([d22136a](https://github.com/erdembas/runhq/commit/d22136acf9ffd7ed87968574f8084e487e238d36)) +* **docs:** correct hero video HTML structure and format with Prettier ([98b0a86](https://github.com/erdembas/runhq/commit/98b0a86d99f7a0c0216c13049e5df3e682239810)) +* **terminal,logs:** use standard terminal colors and fix PTY environment ([8f14e5d](https://github.com/erdembas/runhq/commit/8f14e5d177d25b5c1846b500ea8f5a55b4b59c18)) + ## [0.5.0](https://github.com/erdembas/runhq/compare/v0.4.0...v0.5.0) (2026-04-22) diff --git a/apps/desktop/package.json b/apps/desktop/package.json index ccf8c0d..4432236 100644 --- a/apps/desktop/package.json +++ b/apps/desktop/package.json @@ -1,7 +1,7 @@ { "name": "@runhq/desktop", "private": true, - "version": "0.5.0", + "version": "0.5.1", "description": "RunHQ desktop application (React UI + Tauri shell).", "type": "module", "license": "MIT", diff --git a/apps/desktop/src-tauri/Cargo.toml b/apps/desktop/src-tauri/Cargo.toml index 451ecce..26a41b2 100644 --- a/apps/desktop/src-tauri/Cargo.toml +++ b/apps/desktop/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "runhq-desktop" -version = "0.5.0" # x-release-please-version +version = "0.5.1" # x-release-please-version description = "RunHQ desktop application." edition = "2021" rust-version = "1.77" diff --git a/apps/desktop/src-tauri/tauri.conf.json b/apps/desktop/src-tauri/tauri.conf.json index f7777fa..bb9e92a 100644 --- a/apps/desktop/src-tauri/tauri.conf.json +++ b/apps/desktop/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "https://schema.tauri.app/config/2", "productName": "RunHQ", - "version": "0.5.0", + "version": "0.5.1", "identifier": "io.github.erdembas.runhq", "build": { "beforeDevCommand": "pnpm --filter @runhq/desktop dev", diff --git a/crates/runhq-core/Cargo.toml b/crates/runhq-core/Cargo.toml index 4f8f173..1b34c1e 100644 --- a/crates/runhq-core/Cargo.toml +++ b/crates/runhq-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "runhq-core" -version = "0.5.0" # x-release-please-version +version = "0.5.1" # x-release-please-version edition = "2021" rust-version = "1.77" license = "MIT" diff --git a/package.json b/package.json index 20e07c6..a7c7f07 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "runhq", "private": true, - "version": "0.5.0", + "version": "0.5.1", "description": "The universal local service orchestrator.", "type": "module", "license": "MIT",