From 9cca9488e407e9c611350cf2483e75f8b784a0ce Mon Sep 17 00:00:00 2001 From: yusyus Date: Sun, 21 Dec 2025 23:18:43 +0300 Subject: [PATCH 1/3] fix: Update version string in CLI to 2.2.0 --- src/skill_seekers/cli/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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( From 0297a2e02a0526101e9d48577699ea1dae1d4761 Mon Sep 17 00:00:00 2001 From: yusyus Date: Sun, 21 Dec 2025 23:19:40 +0300 Subject: [PATCH 2/3] docs: Prepare CHANGELOG for next development cycle --- CHANGELOG.md | 9 +++++++++ 1 file changed, 9 insertions(+) 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 From 9d91bf0b82f4da1972a82e89dc2766bcd1c4a1b3 Mon Sep 17 00:00:00 2001 From: yusyus Date: Mon, 22 Dec 2025 00:31:02 +0300 Subject: [PATCH 3/3] test: Update version test to expect 2.2.0 --- tests/test_cli_paths.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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