From f5e56bafd0eae7bad2ac34d0415814937cfcb5f6 Mon Sep 17 00:00:00 2001 From: snowdamiz Date: Sun, 31 May 2026 02:45:36 -0700 Subject: [PATCH] Bump Xero to 0.1.39 --- client/package.json | 2 +- client/src-tauri/Cargo.lock | 4 ++-- client/src-tauri/Cargo.toml | 2 +- client/src-tauri/crates/xero-cli/Cargo.toml | 2 +- client/src-tauri/tauri.conf.json | 2 +- server/Dockerfile | 4 ++-- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/client/package.json b/client/package.json index dccd3d4b..2d57addc 100644 --- a/client/package.json +++ b/client/package.json @@ -1,6 +1,6 @@ { "name": "my-project", - "version": "0.1.38", + "version": "0.1.39", "private": true, "scripts": { "dev": "vite --host 0.0.0.0 --port 3000", diff --git a/client/src-tauri/Cargo.lock b/client/src-tauri/Cargo.lock index 51776231..993e5261 100644 --- a/client/src-tauri/Cargo.lock +++ b/client/src-tauri/Cargo.lock @@ -11839,7 +11839,7 @@ dependencies = [ [[package]] name = "xero-cli" -version = "0.1.38" +version = "0.1.39" dependencies = [ "crossterm", "flate2", @@ -11860,7 +11860,7 @@ dependencies = [ [[package]] name = "xero-desktop" -version = "0.1.38" +version = "0.1.39" dependencies = [ "arc-swap", "arrow-array", diff --git a/client/src-tauri/Cargo.toml b/client/src-tauri/Cargo.toml index 536dede4..18463849 100644 --- a/client/src-tauri/Cargo.toml +++ b/client/src-tauri/Cargo.toml @@ -12,7 +12,7 @@ resolver = "2" [package] name = "xero-desktop" -version = "0.1.38" +version = "0.1.39" edition = "2021" default-run = "xero-desktop" description = "Xero desktop host" diff --git a/client/src-tauri/crates/xero-cli/Cargo.toml b/client/src-tauri/crates/xero-cli/Cargo.toml index 290a8ad8..8823bc80 100644 --- a/client/src-tauri/crates/xero-cli/Cargo.toml +++ b/client/src-tauri/crates/xero-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "xero-cli" -version = "0.1.38" +version = "0.1.39" edition = "2021" description = "Headless Xero CLI backed by xero-agent-core" diff --git a/client/src-tauri/tauri.conf.json b/client/src-tauri/tauri.conf.json index c0589b46..86e44c8d 100644 --- a/client/src-tauri/tauri.conf.json +++ b/client/src-tauri/tauri.conf.json @@ -2,7 +2,7 @@ "$schema": "../node_modules/@tauri-apps/cli/config.schema.json", "productName": "Xero", "mainBinaryName": "xero-desktop", - "version": "0.1.38", + "version": "0.1.39", "identifier": "com.hyperpush.xero", "build": { "beforeDevCommand": "pnpm dev", diff --git a/server/Dockerfile b/server/Dockerfile index 09de1f0e..0a6817ce 100644 --- a/server/Dockerfile +++ b/server/Dockerfile @@ -1,8 +1,8 @@ # syntax=docker/dockerfile:1 -ARG ELIXIR_VERSION=1.15.7 +ARG ELIXIR_VERSION=1.16.3 ARG OTP_VERSION=26.2.1 -ARG DEBIAN_VERSION=bookworm-20231009-slim +ARG DEBIAN_VERSION=bookworm-20260518-slim ARG BUILDER_IMAGE=hexpm/elixir:${ELIXIR_VERSION}-erlang-${OTP_VERSION}-debian-${DEBIAN_VERSION} ARG RUNNER_IMAGE=debian:${DEBIAN_VERSION}