diff --git a/CHANGELOG.md b/CHANGELOG.md index 64cb970..5616c10 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## [0.2.2] - 2026-03-24 + +### 🐛 Bug Fixes + +- Simplify complex type + lint workflow + +### ⚙️ Miscellaneous Tasks + +- Update workflow to use blacksmith ## [0.2.1] - 2026-03-24 ### 🐛 Bug Fixes diff --git a/package.json b/package.json index 47d4708..e2e6451 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "dextop", - "version": "0.2.1", + "version": "0.2.2", "description": "", "license": "MIT", "type": "module", diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index 822ad68..373d1e3 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -738,7 +738,7 @@ dependencies = [ [[package]] name = "dextop" -version = "0.2.1" +version = "0.2.2" dependencies = [ "notify", "serde", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index c00ca54..989ca4c 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dextop" -version = "0.2.1" +version = "0.2.2" description = "A Tauri App" authors = ["you"] edition = "2021" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 2b74077..ac3f3bb 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": "dextop", - "version": "0.2.1", + "version": "0.2.2", "identifier": "com.mattsverse.dextop", "build": { "beforeDevCommand": "bun run dev",