Conversation
* Bumped the project version in `pyproject.toml` to reflect the latest changes.
There was a problem hiding this comment.
Pull request overview
This PR updates the package version from 0.2.13 to 0.2.14 in the pyproject.toml file. However, the PR description incorrectly describes changes to dependency version constraints that are not present in the actual diff. The only change made is a minor version bump.
Note: There is a significant discrepancy between the PR description and the actual changes. The description mentions updating dependency version constraints from == to ~=, but no such changes are present in the diff.
Key Changes
- Version number incremented from
0.2.13to0.2.14
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| [project] | ||
| name = "chromatrace" | ||
| version = "0.2.13" | ||
| version = "0.2.14" |
There was a problem hiding this comment.
The PR description states that "dependency version constraint changes" were made by "switching from exact versions (==) to compatible release (~=) specifiers," but the actual diff only shows a version number update from 0.2.13 to 0.2.14. The dependencies in pyproject.toml already use >= operators (lines 24-32), not == operators, and no changes to dependency constraints are included in this PR. Please update the PR description to accurately reflect that this is only a version bump.
This pull request updates the dependency version constraints in the
pyproject.tomlfile to allow for more flexibility in minor and patch version upgrades. Instead of requiring exact versions for each dependency, the constraints now use the~=operator, which permits updates that do not change the major version.Dependency version constraint changes:
dependencieslist by switching from exact versions (==) to compatible release (~=) specifiers, allowing minor and patch updates while maintaining major version stability. (pyproject.toml)