Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Release
on:
push:
tags:
- 'v*'
- "v*"

permissions:
contents: write
Expand All @@ -15,13 +15,13 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
os: [ubuntu-latest, macos-latest, windows-latest]
Comment on lines 16 to +18
Copy link

Copilot AI Apr 16, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

maturin-action is passed target: ${{ matrix.target }}, but the job matrix only defines os (no target). This makes the workflow brittle (the expression may resolve to an empty/undefined value) and can break wheel builds—especially now that Windows was added. Either add a target entry per matrix item (e.g., via matrix.include) or remove the target: input to let maturin pick the default for each runner.

Copilot uses AI. Check for mistakes.

steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
python-version: "3.11"
- name: Build wheels
uses: PyO3/maturin-action@v1
env:
Expand Down Expand Up @@ -69,3 +69,4 @@ jobs:
uses: pypa/gh-action-pypi-publish@release/v1
with:
packages-dir: dist
skip-existing: true
18 changes: 14 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<p align="center">
<a href="LICENSE"><img src="https://img.shields.io/badge/License-MIT%2FApache--2.0-blue.svg" alt="License" /></a>
<a href="#current-status"><img src="https://img.shields.io/badge/Status-Stable-brightgreen.svg" alt="Status" /></a>
<a href="https://github.com/anaslimem/CortexaDB/releases"><img src="https://img.shields.io/badge/Version-1.0.0-blue.svg" alt="Version" /></a>
<a href="https://github.com/anaslimem/CortexaDB/releases"><img src="https://img.shields.io/badge/Version-1.0.1-blue.svg" alt="Version" /></a>
<a href="https://pepy.tech/projects/cortexadb"><img src="https://static.pepy.tech/personalized-badge/cortexadb?period=total&units=INTERNATIONAL_SYSTEM&left_color=GRAY&right_color=BLUE&left_text=downloads" alt="Downloads" /></a>
<a href="https://cortexa-db.vercel.app"><img src="https://img.shields.io/badge/Docs-cortexa--db.vercel.app-purple.svg" alt="Documentation" /></a>
</p>
Expand Down Expand Up @@ -82,7 +82,7 @@ pip install cortexadb[docs,pdf] # Optional: For PDF/Docx support
<details>
<summary><b>Technical Architecture & Benchmarks</b></summary>

### Performance Benchmarks (v1.0.0)
### Performance Benchmarks (v1.0.1)

Measured on an M-series Mac — 10,000 embeddings × 384 dimensions.

Expand All @@ -100,7 +100,7 @@ See the [full benchmark docs](https://cortexa-db.vercel.app/docs/resources/bench
---

## License & Status
CortexaDB `v1.0.0` is a **stable release** available under the **MIT** and **Apache-2.0** licenses.
CortexaDB `v1.0.1` is a **stable release** available under the **MIT** and **Apache-2.0** licenses.
We welcome feedback and contributions!

---
Expand Down
4 changes: 2 additions & 2 deletions crates/cortexadb-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cortexadb-core"
version = "1.0.0"
version = "1.0.1"
edition = "2021"
authors = ["Anas Limem <limemanas0@gmail.com>"]
description = "Fast, embedded vector + graph memory for AI agents"
Expand All @@ -24,7 +24,7 @@ crc = "3.0"
arc-swap = "1.8.2"
regex = "1.10"
serde_json = "1.0"
usearch = { version = "2.24.0", features = ["simsimd"] }
usearch = { version = "2.25.1", features = ["simsimd"] }
log = "0.4"


Expand Down
2 changes: 1 addition & 1 deletion crates/cortexadb-py/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cortexadb-py"
version = "0.1.8"
version = "1.0.1"
edition = "2021"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion crates/cortexadb-py/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "maturin"

[project]
name = "cortexadb"
version = "1.0.0"
version = "1.0.1"
requires-python = ">=3.9"
description = "Fast, embedded vector + graph memory for AI agents"
authors = [
Expand Down
2 changes: 1 addition & 1 deletion docs/resources/benchmarks.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Benchmarks

CortexaDB v1.0.0 benchmarked with **10,000 embeddings** at **384 dimensions** (typical sentence-transformer size) on an M-series Mac.
CortexaDB v1.0.1 benchmarked with **10,000 embeddings** at **384 dimensions** (typical sentence-transformer size) on an M-series Mac.

> **Build mode note:** Numbers below are from a debug build. A release build (`maturin develop --release`) is 5–10x faster.

Expand Down
Loading