Skip to content

Commit ab45232

Browse files
committed
chore(release): v1.6.1
Patch release bundling three post-v1.6.0 fixes: - UTF-8 panic in temporal search (#24, thanks @majkelooo) - Rust 1.95 clippy CI breakage (#29) - rmcp 1.4 -> 1.5 for MCP protocol 2025-11-25, unblocks Claude Desktop Cowork / Code-in-Desktop tool surfacing (#20, #30)
1 parent c10ec02 commit ab45232

3 files changed

Lines changed: 11 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## v1.6.1 — Patch Release (2026-04-21)
4+
5+
### Fixed
6+
- **UTF-8 panic in temporal search**`find_iso_date_in_query()` no longer panics on queries containing multi-byte characters (e.g. Polish diacritics like ą, ś, ź, ż). Added `is_char_boundary()` guards before `&str` slicing, matching the pattern already used by `extract_date_from_filename()`. Thanks [@majkelooo](https://github.com/majkelooo) ([#24](https://github.com/devwhodevs/engraph/pull/24)).
7+
- **CI green on Rust 1.95** — silenced new `clippy::unnecessary_sort_by` and `clippy::explicit_counter_loop` lints promoted to deny-by-default in Rust 1.95.0. No behavior changes ([#29](https://github.com/devwhodevs/engraph/pull/29)).
8+
9+
### Changed
10+
- **rmcp** bumped from 1.4.0 to 1.5.0 — adds MCP protocol version `2025-11-25` via upstream [modelcontextprotocol/rust-sdk#802](https://github.com/modelcontextprotocol/rust-sdk/pull/802). Resolves [#20](https://github.com/devwhodevs/engraph/issues/20): engraph tools now surface in Claude Desktop Cowork and Code-in-Desktop modes ([#30](https://github.com/devwhodevs/engraph/pull/30)).
11+
312
## v1.6.0 — Onboarding + Identity (2026-04-10)
413

514
### Added

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "engraph"
3-
version = "1.6.0"
3+
version = "1.6.1"
44
edition = "2024"
55
description = "Local knowledge graph for AI agents. Hybrid search + MCP server for Obsidian vaults."
66
license = "MIT"

0 commit comments

Comments
 (0)