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
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,20 @@ All notable changes to ContextPilot will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.3.5.post2] - 2026-03-05

### Added
- Auto-sync CI workflow: ContextPilot `docs/` changes now trigger automatic sync to the documentation site via `repository_dispatch`
- Docker getting-started guide (`docs/getting_started/docker.md`)
- Mac + llama.cpp guide for Apple Silicon (`docs/guides/mac_llama_cpp.md`)
- Supported Primitives reference page (`docs/reference/primitives.md`)

### Changed
- Updated installation docs with macOS and llama.cpp instructions
- Documentation link and typo fixes across multiple guides
- Replaced llama.cpp eviction patch with native C++ hook
- Replaced SGLang/vLLM source patches with zero-patch runtime monkey-patching (`.pth` hooks)

## [0.3.5] - 2026-02-25

### Added
Expand Down
2 changes: 1 addition & 1 deletion contextpilot/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
MEM0_AVAILABLE,
)

__version__ = "0.3.5"
__version__ = "0.3.5.post2"

__all__ = [
# High-level pipeline API
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "contextpilot"
version = "0.3.5"
version = "0.3.5.post2"
description = "Fast Long-Context Inference via Context Reuse"
readme = "README.md"
requires-python = ">=3.10"
Expand Down
Loading