From e27682d8be8ac2348dc728966fa09770762cfb72 Mon Sep 17 00:00:00 2001 From: mrdulasolutions Date: Fri, 15 May 2026 17:46:39 -0400 Subject: [PATCH] chore(release): bump to v0.1.10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Release notes: - fix(notifications): banners now pop on macOS Sequoia. Switched the notification path from the deprecated NSUserNotificationCenter (via tauri-plugin-notification → notify-rust → mac-notification-sys) to UNUserNotificationCenter directly, via our own Tauri command backed by objc2-user-notifications. See PR #23 for the full write-up. - release(ci): every release now publishes the `.app.tar.gz.sig` + `latest.json` updater pair automatically (PR #22) — no more manual upload step 17 hours after each release. Also drops the x86_64 matrix leg that's been queue-timing-out for three releases. - ci: cleared the v0.1.9 release PR's audit + prettier failures (PR #21). Co-Authored-By: Claude Opus 4.7 --- package-lock.json | 4 ++-- package.json | 2 +- sidecar/package.json | 2 +- src-tauri/Cargo.lock | 2 +- src-tauri/Cargo.toml | 2 +- src-tauri/tauri.conf.json | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/package-lock.json b/package-lock.json index cc52d3f..c5f8a73 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "aos-mail", - "version": "0.1.9", + "version": "0.1.10", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "aos-mail", - "version": "0.1.9", + "version": "0.1.10", "license": "BUSL-1.1", "workspaces": [ "src/extensions-private/*" diff --git a/package.json b/package.json index 185425e..4556f91 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "aos-mail", - "version": "0.1.9", + "version": "0.1.10", "license": "BUSL-1.1", "description": "AOS Mail — Agent Operated System for Mail. Native-feeling, multi-inbox, Claude-powered Mac email client.", "repository": { diff --git a/sidecar/package.json b/sidecar/package.json index 2d8e0e2..373fe4d 100644 --- a/sidecar/package.json +++ b/sidecar/package.json @@ -1,6 +1,6 @@ { "name": "aos-mail-sidecar", - "version": "0.1.9", + "version": "0.1.10", "private": true, "description": "AOS Mail backend — Gmail/IMAP sync, Claude agent, SQLite. Runs as a Tauri sidecar.", "type": "module", diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index 9ee88eb..5828c0b 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -77,7 +77,7 @@ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c" [[package]] name = "aos-mail" -version = "0.1.9" +version = "0.1.10" dependencies = [ "block2 0.6.2", "cocoa", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 4b559d7..9d2aa5d 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aos-mail" -version = "0.1.9" +version = "0.1.10" description = "AOS Mail — Agent Operated System for Mail" authors = ["MR Dula Solutions"] edition = "2021" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 0e87e67..5414db8 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": "AOS Mail", - "version": "0.1.9", + "version": "0.1.10", "identifier": "com.mrdulasolutions.aosmail", "build": { "beforeDevCommand": "npm run dev:renderer",