Skip to content

v1.3.2

Choose a tag to compare

@teolex2020 teolex2020 released this 07 Mar 10:15
· 37 commits to main since this release

What's New

Windows File Handle Fix (Critical)

  • close() now properly releases file handles — fixes PermissionError (OS error 5) on Windows
  • Drop delegates to close() for consistent cleanup
  • Python context manager: with Aura("./data") as brain:

Server Architecture Overhaul

  • Replaced global Mutex<Option<AuraMemory>> with Arc<Aura> — no request serialization
  • All server globals consolidated into typed ServerState
  • Migrated from legacy AuraMemory to unified Aura API
  • Split server.rs into server/{state,dto,middleware,handlers}.rs

Positioning & Metadata

  • Description: "Adaptive cognitive layer for AI agents"
  • Version synced to 1.3.2 across all manifests
  • README with clearer competitive framing

Tests

  • Regression tests: close() then remove_dir_all() on Windows
  • 265 Rust tests passing