Skip to content

Releases: EmbarkStudios/krates

Release 0.16.6

24 Jan 16:10
Compare
Choose a tag to compare

Fixed

  • PR#77 resolved #76 by special casing "wildcard" version requirements if the version being tested is a pre-release, as pre-releases must have at least one comparator.

Release 0.16.5

24 Jan 07:45
Compare
Choose a tag to compare

Fixed

  • PR#75 resolved #74 by just always checking version requirements for dependencies. Sigh.

Release 0.16.4

22 Jan 16:24
Compare
Choose a tag to compare

Fixed

  • PR#73 resolved #72 by correctly parsing the new stable package ids where a specifier was not used.

Release 0.16.3

22 Jan 10:36
Compare
Choose a tag to compare

Fixed

  • PR#71 fixed an issue introduced in PR#70 that would cause duplicates to not be detected correctly. Thanks @louisdewar!

Release 0.16.2

21 Jan 11:26
Compare
Choose a tag to compare

Fixed

  • PR#70 resolved #68 and #69 by additionally checking the version of resolve dependencies if there were 2 or more of the same name referenced by the same crate.

Release 0.16.1

20 Jan 06:28
Compare
Choose a tag to compare

Fixed

  • PR#67 resolved #66 by ignore features that reference crates that aren't resolved, instead of panicing, as there should only be one case where that occurs.

Release 0.16.0

20 Jan 06:28
Compare
Choose a tag to compare

Fixed

  • PR#65 resolved #64 by adding support for the newly stabilized (currently nightly only) package id format.

Changed

  • PR#65 changed Kid from just a type alias for cargo_metadata::PackageId to an actual type that has accessors for the various components of the id. It also specifies its own Ord etc implementation so that those ids are sorted the exact same as the old version.

Release 0.15.3

12 Jan 23:32
Compare
Choose a tag to compare

Fixed

Release 0.15.2

12 Jan 11:08
Compare
Choose a tag to compare

Fixed

  • PR#61 resolved #60 by refactoring the building of the crate graph to do its own crate and feature resolution to properly handle pruning based on the user's desires.

Release 0.15.1

03 Sep 15:50
Compare
Choose a tag to compare

Added

  • PR#59 added Krates::krates_filtered, allowing filtering of crates based upon their edge kinds.