Releases: knope-dev/changesets
Releases · knope-dev/changesets
0.3.0 (2024-06-19)
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 Arc
s, since in multi-package repos, these strings
were potentially being cloned a lot.
0.2.4 (2024-06-12)
Features
- Add
Change::from_file_name_and_content
for when you don't want to load directly from the file system.