Skip to content

Commit a6a4e4a

Browse files
johnhuang316claude
andcommitted
chore: bump version to 1.2.1
- Update version in pyproject.toml and __init__.py - Add CHANGELOG.md documenting file watcher improvements and code quality fixes 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent 0e55882 commit a6a4e4a

File tree

3 files changed

+52
-2
lines changed

3 files changed

+52
-2
lines changed

CHANGELOG.md

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
## [1.2.1] - 2024-08-06
6+
7+
### Fixed
8+
- **File Watcher**: Enhanced move event handling for modern editors (VS Code, etc.)
9+
- Fixed issue where files created via temp-then-move pattern weren't being detected
10+
- Improved event processing logic to exclusively check destination path for move events
11+
- Eliminated ambiguous fallback behavior that could cause inconsistent results
12+
13+
### Improved
14+
- **Code Quality**: Comprehensive Pylint compliance improvements
15+
- Fixed all f-string logging warnings using lazy % formatting
16+
- Added proper docstrings to fallback classes
17+
- Fixed multiple-statements warnings
18+
- Moved imports to top-level following PEP 8 conventions
19+
- Added appropriate pylint disables for stub methods
20+
21+
### Technical Details
22+
- Unified path checking logic across all event types
23+
- Reduced code complexity in `should_process_event()` method
24+
- Better error handling with consistent exception management
25+
- Enhanced debugging capabilities with improved logging
26+
27+
## [1.2.0] - Previous Release
28+
29+
### Added
30+
- Enhanced find_files functionality with filename search
31+
- Performance improvements to file discovery
32+
- Auto-refresh troubleshooting documentation
33+
34+
## [1.1.1] - Previous Release
35+
36+
### Fixed
37+
- Various bug fixes and stability improvements
38+
39+
## [1.1.0] - Previous Release
40+
41+
### Added
42+
- Initial file watcher functionality
43+
- Cross-platform file system monitoring
44+
45+
## [1.0.0] - Initial Release
46+
47+
### Added
48+
- Core MCP server implementation
49+
- Code indexing and analysis capabilities
50+
- Multi-language support

pyproject.toml

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

55
[project]
66
name = "code-index-mcp"
7-
version = "1.2.0"
7+
version = "1.2.1"
88
description = "Code indexing and analysis tools for LLMs using MCP"
99
readme = "README.md"
1010
requires-python = ">=3.10"

src/code_index_mcp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
A Model Context Protocol server for code indexing, searching, and analysis.
44
"""
55

6-
__version__ = "1.2.0"
6+
__version__ = "1.2.1"

0 commit comments

Comments
 (0)