chore: Bump version to 2.8.0-dev

Start development cycle for v2.8.0.

Version updated in 5 locations:
- pyproject.toml
- src/skill_seekers/__init__.py
- src/skill_seekers/cli/__init__.py
- src/skill_seekers/mcp/__init__.py
- src/skill_seekers/mcp/tools/__init__.py

All version numbers synchronized to prevent Issue #248.

[Unreleased] section in CHANGELOG.md ready for v2.8.0 changes.

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
yusyus
2026-01-18 14:24:06 +03:00
parent 97272a8989
commit d6f91029f6
5 changed files with 5 additions and 5 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.7.0"
__version__ = "2.8.0-dev"
__author__ = "Yusuf Karaaslan"
__license__ = "MIT"

View File

@@ -28,7 +28,7 @@ except ImportError:
open_folder = None
read_reference_files = None
__version__ = "2.7.0"
__version__ = "2.8.0-dev"
__all__ = [
"LlmsTxtDetector",

View File

@@ -28,6 +28,6 @@ Usage:
in ~/.config/claude-code/mcp.json
"""
__version__ = "2.7.0"
__version__ = "2.8.0-dev"
__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.7.0"
__version__ = "2.8.0-dev"
from .config_tools import (
generate_config as generate_config_impl,