Skip to content

Commit ed20a18

Browse files
committed
chore: v0.5.4
1 parent 53c87cc commit ed20a18

10 files changed

Lines changed: 13 additions & 12 deletions

File tree

.scripts/seed.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import * as toml from 'jsr:@std/toml';
66
import * as path from 'jsr:@std/path';
77
import * as collections from "jsr:@std/collections/deep-merge";
88

9-
const VERSION = "0.5.3";
9+
const VERSION = "0.5.4";
1010

1111
type ValueSeed = {
1212
// Path relative to the project root

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,14 @@ Harbor is a CLI and companion app that lets you spin up a complete local LLM sta
3030

3131
## News
3232

33+
- **v0.5.4** - Repairs first-boot and integration failures across 20+ services found by the new runnable integration suite, plus Boost error responses that propagate real backend status codes
3334
- **v0.5.3** - Boost agentic modules (`quickhop`, `deephop`, `autocheck`, `diffscope`) with `harbor launch --workflow` routing, grok CLI launch support, and faster HF downloads via `hf_transfer`
3435
- **v0.5.2** - Fixes `.env` corruption when several Harbor commands run at once and stops `harbor doctor` from hanging on non-interactive stdin
3536
- **v0.5.1** - Faster `harbor doctor` with timeout-guarded compose checks and early exit for `--check` mode
3637
- **v0.5.0** - DMR, MLX, oMLX, and Daytona services, llamacpp replaces Ollama as default backend, in-app guided install, agent skills CLI, tab completion, and port conflict detection
3738
- **v0.4.19** - Boost Anthropic and Responses API compat layers, `harbor launch` command, ik_llama.cpp service, Boost workflows and tools module
3839
- **v0.4.18** - Open Design and Voicebox services, with local design workflows, voice generation, Harbor backend integrations, and `harbor how` backed by mi
39-
- **v0.4.17** - Needle and npcsh services, with OpenAI-compatible tool-calling, CLI launch support, and npcsh backend/frontend integrations
40+
4041
## Documentation
4142

4243
- [Installing Harbor](https://github.com/av/harbor/wiki/1.0.-Installing-Harbor)<br/>

app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@avcodes/harbor-app",
33
"private": true,
4-
"version": "0.5.3",
4+
"version": "0.5.4",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",

app/src-tauri/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
[package]
33
name = "harbor-app"
4-
version = "0.5.3"
4+
version = "0.5.4"
55
description = "A companion app for Harbor LLM toolkit"
66
authors = ["av"]
77
edition = "2021"

app/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.4.0",
33
"productName": "Harbor",
4-
"version": "0.5.3",
4+
"version": "0.5.4",
55
"identifier": "com.harbor.app",
66
"build": {
77
"beforeDevCommand": "bun run dev",

harbor.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11986,7 +11986,7 @@ run_modularmax_command() {
1198611986
# ========================================================================
1198711987

1198811988
# Globals
11989-
version="0.5.3"
11989+
version="0.5.4"
1199011990
harbor_release_url="https://api.github.com/repos/av/harbor/releases/latest"
1199111991
delimiter="|"
1199211992
scramble_exit_code=42

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@avcodes/harbor",
3-
"version": "0.5.3",
3+
"version": "0.5.4",
44
"description": "Effortlessly run LLM backends, APIs, frontends, and services with one command.",
55
"private": false,
66
"author": "av <av@av.codes> (https://av.codes)",

pyproject.toml

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

services/boost/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description = "Optimising LLM proxy"
55
readme = "README.md"
66
requires-python = ">=3.12"
77
dependencies = ["fastapi==0.111.0","uvicorn[standard]==0.30.6","requests==2.32.3","aiohttp==3.10.5","litellm==1.65.7","mcp==1.6.0","cachetools==5.5.2","asyncache==0.3.1","openai","websockets==15.0.1","shortuuid==1.0.13"]
8-
version = "0.5.3"
8+
version = "0.5.4"
99

1010
[dependency-groups]
11-
dev = ["pytest", "pytest-asyncio", "pytest-xdist", "anthropic"]
11+
dev = ["pytest","pytest-asyncio","pytest-xdist","anthropic"]

0 commit comments

Comments
 (0)