Merge main into development after v2.2.0 release

Brings release commits back to development:
- Version bump to 2.2.0
- CLI version string update
- Test fix for version check
- CHANGELOG [Unreleased] section
- All CI tests passing
This commit is contained in:
yusyus
2025-12-22 00:37:19 +03:00
3 changed files with 11 additions and 2 deletions

View File

@@ -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

View File

@@ -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(

View File

@@ -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