v0.7.0
Summary
We're pleased to announce reclass-rs v0.7.0.
Apart from some dependency and documentation updates, this release improves the error messages that are emitted when merging the content of a parameters field.
Previously, users would get an error without any context regarding for which field value the error occured:
Error rendering node <node>: While resolving references: Can't merge Value::Mapping over Value::Literal
With the improved error message, the same error is signaled as follows:
Error rendering node <node>: While resolving references: In <path.to.field>: Can't merge Value::Mapping over Value::Literal
Finally, the release updates the GitHub actions workflow to create build attestations for the Python wheels.
Changes
8 changes since v0.6.0
🚀 Features
- Generate GitHub actions attestations for Python wheels (#159)
🪛 Internal Changes
- Address new clippy lints for Rust 1.86 (#158)
🐛 Fixes
- Add missing context to errors that occur while flattening values (#157)