fix: Sync version numbers across all __init__.py files to 2.7.0
Fixed version mismatch bug where hardcoded versions were out of sync with pyproject.toml. Updated version from 2.5.2 to 2.7.0 in: - src/skill_seekers/__init__.py - src/skill_seekers/cli/__init__.py - src/skill_seekers/mcp/__init__.py - src/skill_seekers/mcp/tools/__init__.py Now skill-seekers --version correctly reports: 2.7.0 Fixes #248 Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -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.2"
|
||||
__version__ = "2.7.0"
|
||||
__author__ = "Yusuf Karaaslan"
|
||||
__license__ = "MIT"
|
||||
|
||||
|
||||
@@ -28,7 +28,7 @@ except ImportError:
|
||||
open_folder = None
|
||||
read_reference_files = None
|
||||
|
||||
__version__ = "2.5.2"
|
||||
__version__ = "2.7.0"
|
||||
|
||||
__all__ = [
|
||||
"LlmsTxtDetector",
|
||||
|
||||
@@ -28,6 +28,6 @@ Usage:
|
||||
in ~/.config/claude-code/mcp.json
|
||||
"""
|
||||
|
||||
__version__ = "2.5.2"
|
||||
__version__ = "2.7.0"
|
||||
|
||||
__all__ = ["agent_detector"]
|
||||
|
||||
@@ -11,7 +11,7 @@ Tools are organized by functionality:
|
||||
- source_tools: Config source management (fetch, submit, add/remove sources)
|
||||
"""
|
||||
|
||||
__version__ = "2.5.2"
|
||||
__version__ = "2.7.0"
|
||||
|
||||
from .config_tools import (
|
||||
generate_config as generate_config_impl,
|
||||
|
||||
Reference in New Issue
Block a user