From a6676355d819a31f1e1c568acf2caee5b946f98c Mon Sep 17 00:00:00 2001 From: ajspig Date: Wed, 26 Aug 2026 11:10:50 -0400 Subject: [PATCH] chore: bump honcho-cli to 0.1.4 Ship the masked --setup API key prompt plus the openai-compatible embedding base URL already on main. Co-authored-by: Cursor --- docs/changelog/introduction.mdx | 11 ++++++++++- honcho-cli/CHANGELOG.md | 4 +++- honcho-cli/pyproject.toml | 2 +- honcho-cli/src/honcho_cli/__init__.py | 2 +- uv.lock | 2 +- 5 files changed, 16 insertions(+), 5 deletions(-) diff --git a/docs/changelog/introduction.mdx b/docs/changelog/introduction.mdx index 15003c7d..090746f9 100644 --- a/docs/changelog/introduction.mdx +++ b/docs/changelog/introduction.mdx @@ -1170,7 +1170,16 @@ Welcome to the Honcho changelog! This section documents all notable changes to t [Honcho CLI](https://pypi.org/project/honcho-cli/) - + + ### Changed + + - `--setup` API key prompts echo `*` per character so a paste is visibly received instead of a blank getpass field + + ### Fixed + + - `--setup` for openai-compatible writes `EMBEDDING_MODEL_CONFIG__OVERRIDES__BASE_URL` into the profile `.env` alongside `LLM_OPENAI_BASE_URL` (#1068) + + ### Added - `honcho start`, `honcho stop`, and `honcho status` — run a personal Honcho stack in Docker (API, deriver, Postgres, Redis). Profiles live under `~/.honcho/profiles/`. First start pins `ghcr.io/plastic-labs/honcho:latest` by digest and copies the image `config.toml`. Optional `--setup basic` / `--setup advanced` wizard writes LLM overrides to `.env` (#1029) diff --git a/honcho-cli/CHANGELOG.md b/honcho-cli/CHANGELOG.md index 866dcc65..d48c739f 100644 --- a/honcho-cli/CHANGELOG.md +++ b/honcho-cli/CHANGELOG.md @@ -7,13 +7,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [0.1.4] - 2026-08-26 + ### Changed - `--setup` API key prompts echo `*` per character so a paste is visibly received instead of a blank getpass field ### Fixed -- `--setup` for openai-compatible writes `EMBEDDING_MODEL_CONFIG__OVERRIDES__BASE_URL` into the profile `.env` alongside `LLM_OPENAI_BASE_URL` and visible API key paste. +- `--setup` for openai-compatible writes `EMBEDDING_MODEL_CONFIG__OVERRIDES__BASE_URL` into the profile `.env` alongside `LLM_OPENAI_BASE_URL` (#1068) ## [0.1.3] - 2026-08-25 diff --git a/honcho-cli/pyproject.toml b/honcho-cli/pyproject.toml index f2fa4d0c..25c376cb 100644 --- a/honcho-cli/pyproject.toml +++ b/honcho-cli/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "honcho-cli" -version = "0.1.3" +version = "0.1.4" description = "A terminal for Honcho — memory that reasons." readme = "README.md" requires-python = ">=3.11" diff --git a/honcho-cli/src/honcho_cli/__init__.py b/honcho-cli/src/honcho_cli/__init__.py index 5cbd28b3..33860e37 100644 --- a/honcho-cli/src/honcho_cli/__init__.py +++ b/honcho-cli/src/honcho_cli/__init__.py @@ -1,3 +1,3 @@ """Honcho CLI — a terminal for Honcho.""" -__version__ = "0.1.3" +__version__ = "0.1.4" diff --git a/uv.lock b/uv.lock index c92534ac..76f28e20 100644 --- a/uv.lock +++ b/uv.lock @@ -1170,7 +1170,7 @@ dev = [{ name = "ruff", specifier = ">=0.11.13" }] [[package]] name = "honcho-cli" -version = "0.1.3" +version = "0.1.4" source = { editable = "honcho-cli" } dependencies = [ { name = "click" },