Skip to content

Commit 5a93003

Browse files
chore: bump version to 3.4.0
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent d76ab1d commit 5a93003

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

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 = "skill-seekers"
7-
version = "3.3.0"
7+
version = "3.4.0"
88
description = "Convert documentation websites, GitHub repositories, and PDFs into Claude AI skills. International support with Chinese (简体中文) documentation."
99
readme = "README.md"
1010
requires-python = ">=3.10"

tests/test_cli_paths.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ def test_main_cli_version_output(self):
138138

139139
# Should show version
140140
output = result.stdout + result.stderr
141-
self.assertIn("3.3.0", output)
141+
self.assertIn("3.4.0", output)
142142

143143
except FileNotFoundError:
144144
# If skill-seekers is not installed, skip this test

tests/test_package_structure.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def test_cli_has_version(self):
2424
import skill_seekers.cli
2525

2626
assert hasattr(skill_seekers.cli, "__version__")
27-
assert skill_seekers.cli.__version__ == "3.3.0"
27+
assert skill_seekers.cli.__version__ == "3.4.0"
2828

2929
def test_cli_has_all(self):
3030
"""Test that skill_seekers.cli package has __all__ export list."""
@@ -88,7 +88,7 @@ def test_mcp_has_version(self):
8888
import skill_seekers.mcp
8989

9090
assert hasattr(skill_seekers.mcp, "__version__")
91-
assert skill_seekers.mcp.__version__ == "3.3.0"
91+
assert skill_seekers.mcp.__version__ == "3.4.0"
9292

9393
def test_mcp_has_all(self):
9494
"""Test that skill_seekers.mcp package has __all__ export list."""
@@ -108,7 +108,7 @@ def test_mcp_tools_has_version(self):
108108
import skill_seekers.mcp.tools
109109

110110
assert hasattr(skill_seekers.mcp.tools, "__version__")
111-
assert skill_seekers.mcp.tools.__version__ == "3.3.0"
111+
assert skill_seekers.mcp.tools.__version__ == "3.4.0"
112112

113113

114114
class TestPackageStructure:
@@ -212,7 +212,7 @@ def test_root_has_version(self):
212212
import skill_seekers
213213

214214
assert hasattr(skill_seekers, "__version__")
215-
assert skill_seekers.__version__ == "3.3.0"
215+
assert skill_seekers.__version__ == "3.4.0"
216216

217217
def test_root_has_metadata(self):
218218
"""Test that skill_seekers root package has metadata."""

0 commit comments

Comments
 (0)