diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 2537c1f..f1c1e58 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.4.0" + ".": "0.5.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 8cc99f3..729d79c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.5.0](https://github.com/mohammedhammoud/aisync/compare/aisync-v0.4.0...aisync-v0.5.0) (2026-05-20) + + +### Features + +* add tauri updater releases and signed update flow ([#13](https://github.com/mohammedhammoud/aisync/issues/13)) ([5a94850](https://github.com/mohammedhammoud/aisync/commit/5a948501de958a3b60e56b2751e6a1d79dd47b9f)) + ## [0.4.0](https://github.com/mohammedhammoud/aisync/compare/aisync-v0.3.0...aisync-v0.4.0) (2026-05-20) diff --git a/Caskfile b/Caskfile index 5dbbf07..6fcdfca 100644 --- a/Caskfile +++ b/Caskfile @@ -1,5 +1,5 @@ cask "aisync" do - version "0.3.0" # x-release-please-version + version "0.5.0" # x-release-please-version sha256 :no_check url "https://github.com/mohammedhammoud/aisync/releases/download/aisync-v#{version}/AISync_#{version}_universal.dmg", diff --git a/package.json b/package.json index ff3af56..c1758d7 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "aisync", "private": true, - "version": "0.4.0", + "version": "0.5.0", "type": "module", "packageManager": "pnpm@11.0.8", "scripts": { diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index e1ed6e4..659d254 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -25,7 +25,7 @@ dependencies = [ [[package]] name = "aisync" -version = "0.4.0" +version = "0.5.0" dependencies = [ "base64 0.22.1", "chrono", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 7cb048c..09f061c 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aisync" -version = "0.4.0" +version = "0.5.0" description = "Local desktop utility for AI provider, skill, instruction, and sync management" authors = ["AISync"] edition = "2021" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 52d4034..4a503d6 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": "AISync", - "version": "0.4.0", + "version": "0.5.0", "identifier": "io.github.mohammedhammoud.aisync", "build": { "beforeDevCommand": "pnpm dev", @@ -32,7 +32,10 @@ "bundle": { "active": true, "createUpdaterArtifacts": true, - "targets": ["app", "dmg"], + "targets": [ + "app", + "dmg" + ], "icon": [ "icons/32x32.png", "icons/128x128.png",