Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 6a333659fd
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| [project] | ||
| name = "prek" | ||
| version = "0.3.10" | ||
| version = "0.3.11" |
There was a problem hiding this comment.
Keep uv.lock in sync with bumped package version
Bumping [project].version to 0.3.11 without updating uv.lock leaves the lockfile internally inconsistent (uv.lock still lists prek as 0.3.10), which can cause lockfile freshness checks and reproducible-dev workflows to fail or force unexpected lockfile churn in subsequent commits. Previous version-bump commits in this repo updated both files together, so this change appears to introduce a stale lockfile state.
Useful? React with 👍 / 👎.
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #2018 +/- ##
=======================================
Coverage 92.18% 92.19%
=======================================
Files 117 117
Lines 23781 23781
=======================================
+ Hits 21923 21925 +2
+ Misses 1858 1856 -2 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
There was a problem hiding this comment.
Pull request overview
Updates the project to release version 0.3.11, aligning Rust workspace/package metadata and user-facing documentation with the new tag.
Changes:
- Bump version references from
0.3.10to0.3.11across Cargo workspace metadata and Python packaging metadata. - Update documentation/examples (README + integrations docs) to reference the
v0.3.11release artifacts and container tags. - Add a
0.3.11section to the changelog with highlights and categorized entries.
Reviewed changes
Copilot reviewed 5 out of 6 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
pyproject.toml |
Bumps Python project version to 0.3.11. |
Cargo.toml |
Bumps workspace/package version and internal workspace dependency versions to 0.3.11. |
Cargo.lock |
Updates locked package versions to 0.3.11. |
README.md |
Updates install commands to use the v0.3.11 release. |
docs/integrations.md |
Updates container image examples and version tag references to v0.3.11. |
CHANGELOG.md |
Adds release notes section for 0.3.11. |
| [project] | ||
| name = "prek" | ||
| version = "0.3.10" | ||
| version = "0.3.11" |
There was a problem hiding this comment.
pyproject.toml was bumped to 0.3.11, but uv.lock still pins the local prek package at version 0.3.10. If uv.lock is committed/checked in CI, this version mismatch can cause confusing metadata or lockfile consistency failures. Regenerate/update uv.lock (or otherwise ensure it reflects 0.3.11) as part of the version bump.
No description provided.