Skip to content

Commit 3e0841c

Browse files
committed
Release v0.1.8
1 parent d326763 commit 3e0841c

4 files changed

Lines changed: 19 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,22 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.1.8] - 2026-03-08
9+
10+
### Added
11+
- **100x Faster Ingestion**: Implemented Rust-level batching in `remember_batch` and Python `ingest()`.
12+
- **Modernized API**: New `Collection` abstraction and unified `add`/`search` methods.
13+
- **Fluent Query Builder**: Chainable interface for complex discovery queries.
14+
15+
### Fixed
16+
- **CI Regression Fixes**: Resolved keyword argument collisions and restored missing core methods.
17+
- **Graph Isolation**: Ensured graph-based discovery respects collection boundaries.
18+
19+
## [0.1.7] - 2026-03-07
20+
21+
### Added
22+
- Initial batching support (pre-release).
23+
824
## [0.1.0] - 2026-02-25
925

1026
### Added

crates/cortexadb-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cortexadb-core"
3-
version = "0.1.7"
3+
version = "0.1.8"
44
edition = "2021"
55
authors = ["Anas Limem <limemanas0@gmail.com>"]
66
description = "Fast, embedded vector + graph memory for AI agents"

crates/cortexadb-py/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cortexadb-py"
3-
version = "0.1.7"
3+
version = "0.1.8"
44
edition = "2021"
55

66
[lib]

crates/cortexadb-py/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "maturin"
44

55
[project]
66
name = "cortexadb"
7-
version = "0.1.7"
7+
version = "0.1.8"
88
requires-python = ">=3.9"
99
description = "Fast, embedded vector + graph memory for AI agents"
1010
authors = [

0 commit comments

Comments
 (0)