diff --git a/CHANGELOG.md b/CHANGELOG.md index 2da1020b..3b142c13 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,9 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](https://semver.org/). +## 0.5.0 +- Updated Rust and Typescript dependencies + ## 0.4.0 - Add `Settings` page diff --git a/package.json b/package.json index 4f655a1e..e3f59a53 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "pachtop", "private": true, - "version": "0.4.0", + "version": "0.5.0", "type": "module", "scripts": { "dev": "vite", @@ -46,4 +46,4 @@ "vite": "^4.3.5" }, "packageManager": "yarn@3.8.2" -} +} \ No newline at end of file diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 3eef51c3..0fb74d3c 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "app" -version = "0.4.0" +version = "0.5.0" description = "Cross-platform (Linux, WIndows, MacOS) Desktop GUI system monitor" authors = ["Pacholo Amit"] license = "MIT" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 9c4137c1..35c6150a 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -8,7 +8,7 @@ }, "package": { "productName": "pachtop", - "version": "0.4.0" + "version": "0.5.0" }, "tauri": { "systemTray": { @@ -68,7 +68,13 @@ "depends": [] }, "externalBin": [], - "icon": ["icons/32x32.png", "icons/128x128.png", "icons/128x128@2x.png", "icons/icon.icns", "icons/icon.ico"], + "icon": [ + "icons/32x32.png", + "icons/128x128.png", + "icons/128x128@2x.png", + "icons/icon.icns", + "icons/icon.ico" + ], "identifier": "com.pachtop.dev", "longDescription": "", "macOS": { @@ -92,7 +98,9 @@ }, "updater": { "active": true, - "endpoints": ["https://update.pachtop.com/releases/pachtop/{{target}}/{{current_version}}"], + "endpoints": [ + "https://update.pachtop.com/releases/pachtop/{{target}}/{{current_version}}" + ], "pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IEM0NkIyODA1NThCM0I0MUEKUldRYXRMTllCU2hyeE9mSUx0MElJN2N5VFo5TytFV1RwaUtoaytDNVdmajNQMmlseVlYMGYzeUkK" }, "windows": [ @@ -108,4 +116,4 @@ } ] } -} +} \ No newline at end of file