diff --git a/CHANGELOG.md b/CHANGELOG.md index e113670..2b538c6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Added + +### Changed + +### Fixed +- CLI version string updated to 2.2.0 (was showing 2.1.1) + +### Removed + --- ## [2.2.0] - 2025-12-21 diff --git a/src/skill_seekers/cli/main.py b/src/skill_seekers/cli/main.py index e3458ee..2446a04 100644 --- a/src/skill_seekers/cli/main.py +++ b/src/skill_seekers/cli/main.py @@ -60,7 +60,7 @@ For more information: https://github.com/yusufkaraaslan/Skill_Seekers parser.add_argument( "--version", action="version", - version="%(prog)s 2.1.1" + version="%(prog)s 2.2.0" ) subparsers = parser.add_subparsers( diff --git a/tests/test_cli_paths.py b/tests/test_cli_paths.py index 5a96e82..0a0e5aa 100644 --- a/tests/test_cli_paths.py +++ b/tests/test_cli_paths.py @@ -126,7 +126,7 @@ class TestUnifiedCLIEntryPoints(unittest.TestCase): # Should show version output = result.stdout + result.stderr - self.assertIn('2.1.1', output) + self.assertIn('2.2.0', output) except FileNotFoundError: # If skill-seekers is not installed, skip this test