Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.4.0"
".": "0.5.0"
}
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
2 changes: 1 addition & 1 deletion Caskfile
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "aisync",
"private": true,
"version": "0.4.0",
"version": "0.5.0",
"type": "module",
"packageManager": "pnpm@11.0.8",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
7 changes: 5 additions & 2 deletions src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -32,7 +32,10 @@
"bundle": {
"active": true,
"createUpdaterArtifacts": true,
"targets": ["app", "dmg"],
"targets": [
"app",
"dmg"
],
"icon": [
"icons/32x32.png",
"icons/128x128.png",
Expand Down