Skip to content

Releases: EmbarkStudios/krates

0.16.9

09 Apr 14:36
Compare
Choose a tag to compare

Fixed

  • PR#81 re-resolved #79 because the PR#80 completely broke in the presence of cargo patches.

0.16.8

09 Apr 11:42
Compare
Choose a tag to compare

Fixed

  • PR#80 resolved #79 by fixing an extreme edge case with dependency renaming.

0.16.7

20 Mar 15:29
Compare
Choose a tag to compare

Fixed

  • PR#78 fixed an issue where setting manifest_path to Cargo.toml without preceding ./ would cause the current directory be set to empty, and cargo_metadata to fail.

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.