Skip to content

Releases: knope-dev/changesets

0.3.0 (2024-06-19)

19 Jun 18:46
dd9c313
Compare
Choose a tag to compare

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.

0.2.4 (2024-06-12)

12 Jun 01:42
f3c9ce7
Compare
Choose a tag to compare

Features

  • Add Change::from_file_name_and_content for when you don't want to load directly from the file system.

0.2.3 (2024-03-24)

24 Mar 00:34
dad1e2b
Compare
Choose a tag to compare

Features

impl From<String> for ChangeType

0.2.2 (2023-09-17)

17 Sep 02:45
18109b3
Compare
Choose a tag to compare

Features

Sort changes for each Release in a ChangeSet (for easier comparison/testing)

0.2.1

17 Jun 17:16
54f1245
Compare
Choose a tag to compare

0.2.1

Fixes

  • Improve UniqueId to never have sequential underscores

0.2.0

16 Jun 02:10
0d34bab
Compare
Choose a tag to compare

0.2.0

Breaking Changes

  • Change::unique_id is a new UniqueId type

0.1.1

13 Jun 23:46
5691b93
Compare
Choose a tag to compare

0.1.1

Features

  • impl FromIterator for Versioning

0.1.0

13 Jun 23:23
a6f50a7
Compare
Choose a tag to compare

0.1.0

Breaking Changes

  • BumpType renamed to ChangeType with many relevant renamings throughout other structs.

Features

  • Allow custom change types.

0.0.1

13 Jun 00:14
61a3f48
Compare
Choose a tag to compare

0.0.1

Features

  • Initial feature set!