Skip to content

Release v0.3.2

Choose a tag to compare

@github-actions github-actions released this 22 Jun 05:43
· 21 commits to develop since this release
629124d

What's New in v0.3.2

Fixed

  • Harden schema migrations for partially-migrated databases (#435)
    • migrate_v9_to_v10 now uses column_exists() guard before ALTER TABLE ADD COLUMN for source and source_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_v8 now creates idx_memories_slug index as a separate
      statement instead of inside execute_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 tool
  • uteke-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 8767

Full changelog: https://github.com/codecoradev/uteke/blob/main/CHANGELOG.md