Skip to content

0.3.0 (2024-06-19)

Latest
Compare
Choose a tag to compare
@dbanty dbanty released this 19 Jun 18:46
· 17 commits to main since this release
dd9c313

Breaking Changes

Rework ChangeSet and PackageChange interfaces

ChangeSet now uses a Vec internally instead of a HashMap to perform better for low/single-package repos.
Instead of accessing the internal releases field, you can use into::<Vec<_>>() or into_iter().

PackageChange now stores both unique_id and summary in Arcs, since in multi-package repos, these strings
were potentially being cloned a lot.