diff --git a/CHANGELOG.md b/CHANGELOG.md index 2d26679..a972311 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to Parallels DevOps UI are documented here. Format follows [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). +## [0.2.3] - 2026-06-11 + +- feat: update SmartGridLayout item class +- change HostsPanel and VmsPanel variant to flat +- enhance Notification context and service for user-specific storage +- Added dismiss operation to toast +- Cache now displays name as title on the cache panel instead of description +- deps: bump the minor-and-patch group with 10 updates ## [0.2.2] - 2026-06-11 - chore: maintenance release diff --git a/VERSION b/VERSION index ee1372d..7179039 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.2.2 +0.2.3 diff --git a/helm/prl-devops-ui/Chart.yaml b/helm/prl-devops-ui/Chart.yaml index e8ca9b4..bd10f2e 100644 --- a/helm/prl-devops-ui/Chart.yaml +++ b/helm/prl-devops-ui/Chart.yaml @@ -2,5 +2,5 @@ apiVersion: v2 name: prl-devops-ui description: Parallels DevOps UI type: application -version: 0.2.2 -appVersion: "0.2.2" +version: 0.2.3 +appVersion: "0.2.3" diff --git a/package-lock.json b/package-lock.json index 1f25995..3b2ac9b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "com.parallels.prl-devops-ui", - "version": "0.2.2", + "version": "0.2.3", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "com.parallels.prl-devops-ui", - "version": "0.2.2", + "version": "0.2.3", "workspaces": [ "packages/*" ], diff --git a/package.json b/package.json index 04ac76e..561daf2 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "com.parallels.prl-devops-ui", "private": true, - "version": "0.2.2", + "version": "0.2.3", "type": "module", "workspaces": [ "packages/*" diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index c9dabf2..5d60efb 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "parallels-devops-ui" -version = "0.2.2" +version = "0.2.3" description = "Parallels DevOps UI" authors = ["Parallels, Inc."] edition = "2024" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 412a402..756f4fa 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": "Parallels DevOps UI", - "version": "0.2.2", + "version": "0.2.3", "identifier": "com.parallels.devops-ui", "build": { "beforeDevCommand": "npm run dev",