Conversation
Align with capiscio-core for unified versioning. All capiscio packages now share the same version number.
|
✅ All checks passed! Ready for review. |
Contributor
There was a problem hiding this comment.
Pull request overview
This PR bumps the capiscio Python package version from 2.1.3 to 2.2.0 to align with capiscio-core v2.2.0, implementing unified versioning across all CapiscIO packages (core, npm, and PyPI). The PR also introduces a comprehensive test suite achieving 96% coverage.
Key Changes:
- Version alignment: Updated CORE_VERSION from 1.0.2 to 2.2.0 in manager.py
- Added comprehensive test suite for CLI and manager modules (tests/test_cli.py, tests/test_manager.py)
- Updated CHANGELOG.md with version 2.2.0 release notes
Reviewed changes
Copilot reviewed 7 out of 7 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
| pyproject.toml | Bumped package version from 2.1.3 to 2.2.0 |
| src/capiscio/init.py | Updated version string (incorrectly set to 2.1.3 instead of 2.2.0) |
| src/capiscio/manager.py | Updated CORE_VERSION from 1.0.2 to 2.2.0 for binary downloads |
| CHANGELOG.md | Added release notes for v2.2.0 with version alignment and test coverage improvements |
| tests/test_manager.py | New comprehensive test suite for manager module with platform detection, binary download, and execution tests |
| tests/test_cli.py | Expanded test suite with class-based organization covering CLI passthrough, wrapper commands, and exit codes |
| tests/conftest.py | New pytest configuration to add src directory to Python path |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
|
✅ All checks passed! Ready for review. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Align version with capiscio-core for unified versioning across all CapiscIO packages.
Changes
2.1.3to2.2.0CORE_VERSIONfrom1.0.2to2.2.0Version Alignment
All CapiscIO packages now share the same version number:
This simplifies compatibility - users can run
capiscio --versionand get the same version regardless of installation method.