Skip to content

Commit bd6b954

Browse files
Fix Windows build and bump to 0.3.1
- Fix CLI module import for cross-platform build - tauri::command was only imported for unix, breaking Windows build 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 353b2e2 commit bd6b954

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

CHANGELOG.md

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

8-
## [0.2.7] - 2025-12-22
8+
## [0.3.1] - 2025-12-22
9+
10+
### Fixed
11+
- Fix Windows build by correcting CLI module imports
12+
13+
## [0.3.0] - 2025-12-22
914

1015
### Added
1116
- Ollama support for local AI models

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "athas-code",
33
"private": true,
4-
"version": "0.3.0",
4+
"version": "0.3.1",
55
"type": "module",
66
"scripts": {
77
"tauri": "tauri",

src-tauri/src/commands/development/cli.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
use std::fs;
22
#[cfg(unix)]
33
use std::os::unix::fs::PermissionsExt;
4-
#[cfg(unix)]
54
use tauri::command;
65

76
// Platform-specific CLI paths

src-tauri/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": "Athas",
4-
"version": "0.3.0",
4+
"version": "0.3.1",
55
"identifier": "com.code.athas",
66
"build": {
77
"beforeDevCommand": "bun vite",

0 commit comments

Comments
 (0)