Release v0.3.2
What's New in v0.3.2
Fixed
- Harden schema migrations for partially-migrated databases (#435)
migrate_v9_to_v10now usescolumn_exists()guard beforeALTER TABLE ADD COLUMNforsourceandsource_type. Prevents "duplicate column
name" crash on databases that were partially migrated by a buggy binary
(e.g. v0.3.0 which ran SCHEMA_INDEXES before migrations).migrate_v7_to_v8now createsidx_memories_slugindex as a separate
statement instead of insideexecute_batch, producing clearer error
messages on failure.
Docs
- Added detailed documentation checklist to AGENT.md release process (#434).
📦 Binaries
Each archive contains two binaries:
uteke— CLI tooluteke-serve— HTTP server daemon
| Platform | File |
|---|---|
| Linux (x86_64) | uteke-v0.3.2-x86_64-unknown-linux-gnu.tar.gz |
| Linux (ARM64) | uteke-v0.3.2-aarch64-unknown-linux-gnu.tar.gz |
| macOS (Apple Silicon) | uteke-v0.3.2-aarch64-apple-darwin.tar.gz |
| Windows (x86_64) | uteke-v0.3.2-x86_64-pc-windows-msvc.zip |
🚀 Quick Start
# Quick install (Linux / macOS)
curl -fsSL https://raw.githubusercontent.com/codecoradev/uteke/main/install.sh | sh
# Pin a specific version
UTEKE_VERSION=v curl -fsSL https://raw.githubusercontent.com/codecoradev/uteke/main/install.sh | sh
# Store a memory
uteke remember "Important context" --tags project
# Recall by meaning
uteke recall "what was that context?"
# Start server for fast AI agent access
uteke-serve --port 8767Full changelog: https://github.com/codecoradev/uteke/blob/main/CHANGELOG.md