chore: Bump version to v2.5.2 - Package Configuration Improvement

- Switch from manual package listing to automatic discovery
- Improves maintainability and prevents missing module bugs
- All tests passing (700+ tests)
- Package contents verified identical to v2.5.1

Fixes #226
Merges #227

Thanks to @iamKhan79690 for the contribution!

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
Co-Authored-By: Anas Ur Rehman (@iamKhan79690) <noreply@github.com>
This commit is contained in:
yusyus
2026-01-01 18:57:21 +03:00
parent e07b44a9ef
commit 2ebf6c8cee
7 changed files with 49 additions and 12 deletions

View File

@@ -5,7 +5,7 @@ This package provides tools for automatically scraping, organizing, and packagin
documentation from various sources into uploadable Claude AI skills.
"""
__version__ = "2.5.1"
__version__ = "2.5.2"
__author__ = "Yusuf Karaaslan"
__license__ = "MIT"

View File

@@ -28,7 +28,7 @@ except ImportError:
open_folder = None
read_reference_files = None
__version__ = "2.5.1"
__version__ = "2.5.2"
__all__ = [
"LlmsTxtDetector",

View File

@@ -28,6 +28,6 @@ Usage:
in ~/.config/claude-code/mcp.json
"""
__version__ = "2.5.1"
__version__ = "2.5.2"
__all__ = ["agent_detector"]

View File

@@ -11,7 +11,7 @@ Tools are organized by functionality:
- source_tools: Config source management (fetch, submit, add/remove sources)
"""
__version__ = "2.5.1"
__version__ = "2.5.2"
from .config_tools import (
generate_config as generate_config_impl,