Release 0.3.3 - #3
Merged
Merged
Conversation
Maintenance release with no API or behavior changes. - Refresh Cargo.lock: log 0.4.34, scroll_derive 0.13.2 (adds syn 3.0.5). Direct dependencies were already at their latest versions. - Replace chunks_exact(2) with as_chunks::<2>() in the UTF-16 decoders to satisfy clippy's new chunks_exact_to_as_chunks lint on stable. as_chunks is stable since 1.88, so the MSRV is unchanged. - Replace em-dashes with plain hyphens across docs, comments, README, SAMPLES.md and CHANGELOG.md. Reword the two lines that began with a dash so they no longer render as list items (one tripped clippy's doc_lazy_continuation). - Add source and build notes for the known-rtti and fpc-methodrtti test fixtures.
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.
Maintenance release with no API or behavior changes.
Changes
Cargo.lock(log0.4.33 -> 0.4.34,scroll_derive0.13.1 -> 0.13.2, which pulls insyn3.0.5). Direct dependencies (goblin0.10.7,scroll0.13.0,tracing0.1.44) were already current on crates.io.DfmValue::as_text,as_text_strict, the DFM renderer, PE resource-name reading) now useas_chunks::<2>()instead ofchunks_exact(2)plus a fallible array conversion. Clippy 1.98'schunks_exact_to_as_chunkslint would otherwise fail the stable clippy job.as_chunksis stable since 1.88, so the MSRV is unchanged.SAMPLES.md, andCHANGELOG.md. Two lines that began with a dash would have rendered as stray list items (src/lib.rs, which also trippeddoc_lazy_continuation, andREADME.md) and were reworded.tests/fixtures/known-rtti/andtests/fixtures/fpc-methodrtti/.Verification (local)
cargo fmt --checkcargo clippy -- -D warningsandcargo clippy --all-targets --all-features -- -D warnings(stable 1.98)RUSTDOCFLAGS="-D warnings" cargo doc --no-depscargo test --all-featureson stable andcargo teston 1.88: 114 tests pass on both