Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.4.2](https://github.com/jdx/pklr/compare/v0.4.1...v0.4.2) - 2026-04-26

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Changelog entry version doesn't match PR title

The new changelog entry is headed [0.4.2], while the PR is titled "chore: release v0.5.0" and the description lists breaking changes under 0.5.0. The changelog, Cargo.toml, and Cargo.lock are all inconsistent with the stated release version.

Fix in Claude Code


### Fixed

- *(eval)* make @Deprecated lazy β€” only warn on access ([#58](https://github.com/jdx/pklr/pull/58))

## [0.4.1](https://github.com/jdx/pklr/compare/v0.4.0...v0.4.1) - 2026-04-07

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pklr"
version = "0.4.1"
version = "0.4.2"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Version set to 0.4.2 instead of 0.5.0

High Severity

The PR title and description explicitly state this is a v0.5.0 release with breaking API changes (a new deprecated field on ObjectSource), but the version in Cargo.toml, Cargo.lock, and CHANGELOG.md is set to 0.4.2. Since the project adheres to Semantic Versioning and this includes a breaking change to a public struct, the version must be a minor bump (0.5.0), not a patch bump (0.4.2). Publishing as 0.4.2 would violate semver and break downstream consumers.

Additional Locations (2)
Fix in CursorΒ Fix in Web

Reviewed by Cursor Bugbot for commit 5ebfa23. Configure here.

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Version mismatch: PR title says v0.5.0 but diff sets v0.4.2

The PR title, description, and the breaking-change notice all reference v0.5.0, but Cargo.toml (and Cargo.lock) are being bumped to 0.4.2. Additionally, the PR description explicitly flags an API-breaking change (ObjectSource gains a new pub field), which per SemVer requires at least a minor-version bump β€” making 0.4.2 (a patch release) incorrect regardless of the title mismatch. The published crate version will not match the intended release.

Fix in Claude Code

edition = "2024"
rust-version = "1.88"
description = "Pure Rust pkl configuration language parser and evaluator"
Expand Down
Loading