Skip to content

Commit 27fef75

Browse files
committed
chore: bump version to 0.1.5
1 parent 14ad834 commit 27fef75

File tree

3 files changed

+19
-3
lines changed

3 files changed

+19
-3
lines changed

CHANGELOG.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.1.5] - 2026-03-25
11+
12+
### Added
13+
- Version header (magic bytes + version) to trigram cache format for forward compatibility
14+
- Strict input validation for MCP tool parameters (type checking for integers and booleans)
15+
- Case-insensitive file type matching (`--type RUST` now works)
16+
- Code coverage reporting in CI (cargo-tarpaulin + Codecov)
17+
- CHANGELOG.md following Keep a Changelog format
18+
19+
### Fixed
20+
- Suppress stderr output in MCP server mode to avoid interfering with JSON-RPC clients
21+
22+
### Security
23+
- SAFETY comments on all unsafe blocks documenting invariants
24+
1025
## [0.1.4] - 2026-03-24
1126

1227
### Added
@@ -42,6 +57,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4257
- Parallel file scanning with rayon
4358
- SIMD-accelerated pattern matching via memchr
4459

45-
[Unreleased]: https://github.com/momokun7/xgrep/compare/v0.1.4...HEAD
60+
[Unreleased]: https://github.com/momokun7/xgrep/compare/v0.1.5...HEAD
61+
[0.1.5]: https://github.com/momokun7/xgrep/compare/v0.1.4...v0.1.5
4662
[0.1.4]: https://github.com/momokun7/xgrep/compare/v0.1.0...v0.1.4
4763
[0.1.0]: https://github.com/momokun7/xgrep/releases/tag/v0.1.0

rust/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.

rust/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "xgrep-search"
3-
version = "0.1.4"
3+
version = "0.1.5"
44
edition = "2021"
55
rust-version = "1.85"
66
description = "Ultra-fast indexed code search with MCP server for AI agents. Trigram inverted index, 50x faster than ripgrep on repeated searches."

0 commit comments

Comments
 (0)