Skip to content

Commit 1568139

Browse files
committed
v0.3.15
1 parent b8d2049 commit 1568139

File tree

9 files changed

+10
-10
lines changed

9 files changed

+10
-10
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to Gemini CLI Desktop will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## Unreleased
8+
## [0.3.15](https://github.com/Piebald-AI/gemini-cli-desktop/releases/tag/v0.3.15) - 2026-01-17
99

1010
### Added
1111

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,4 +160,4 @@ Contributions are welcome! Please see the [contributing guide](CONTRIBUTING.md)
160160

161161
[MIT](./LICENSE)
162162

163-
Copyright © 2025 [Piebald LLC.](https://piebald.ai)
163+
Copyright © 2026 [Piebald LLC.](https://piebald.ai)

crates/backend/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "backend"
3-
version = "0.3.14"
3+
version = "0.3.15"
44
edition = "2024"
55

66
[features]

crates/tauri-app/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tauri-app"
3-
version = "0.3.14"
3+
version = "0.3.15"
44
description = "Desktop/web UI for Gemini CLI/Qwen Code. Manage projects, switch between tools, search across past conversations, and manage MCP servers, all from one interface, locally or remotely."
55
authors = ["Piebald LLC <[email protected]>"]
66
edition = "2021"

crates/tauri-app/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://schema.tauri.app/config/2",
33
"productName": "Gemini CLI Desktop",
4-
"version": "0.3.14",
4+
"version": "0.3.15",
55
"identifier": "ai.piebald.gemini-cli-desktop",
66
"build": {
77
"beforeDevCommand": "pnpm dev",

frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "gemini-cli-desktop",
33
"private": true,
4-
"version": "0.3.14",
4+
"version": "0.3.15",
55
"type": "module",
66
"scripts": {
77
"dev": "npm run copy-pdf-worker && vite",

frontend/src/components/common/AboutDialog.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export const AboutDialog: React.FC<AboutDialogProps> = ({
2727
const backendText = getBackendText(selectedBackend);
2828

2929
const appName = backendText.desktopName;
30-
const appVersion = "0.3.14";
30+
const appVersion = "0.3.15";
3131
const currentYear = new Date().getFullYear();
3232

3333
return (

installer.iss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
33

44
#define AppName "Gemini CLI Desktop"
5-
#define AppVersion "0.3.14"
5+
#define AppVersion "0.3.15"
66
#define AppPublisher "Piebald LLC"
77
#define AppURL "https://github.com/Piebald-AI/gemini-cli-desktop"
88
#define AppExeName "gemini-cli-desktop.exe"

0 commit comments

Comments
 (0)