Skip to content

Releases: guppy-rs/guppy

cargo-hakari 0.9.28

04 Oct 02:33
Compare
Choose a tag to compare

Added

New config option workspace-hack-line-style, with three possible values:

  • "full": my-workspace-hack = { version = "0.1", path = ... }. This is the default and a
    good way to get started.

  • "version-only": my-workspace-hack = { version = "0.1" }. Specifying versions this way is
    useful if you've published a stub crate to crates.io (see the publishing
    section). You can use this in combination with a patch directive in the root Cargo.toml:

    [patch.crates-io.my-workspace-hack]
    path = "workspace-hack"
  • "workspace-dotted": my-workspace-hack.workspace = true. To use this, define a workspace
    dependency in the root Cargo.toml:

    [workspace.dependencies]
    my-workspace-hack = { version = "0.1", path = "workspace-hack" }
    
    # or, along with a patch directive:
    my-workspace-hack = { version = "0.1" }

Changed

  • MSRV updated to Rust 1.70.
  • Builtin platforms updated to Rust 1.72.

target-spec 3.0.1

29 Jul 19:48
Compare
Choose a tag to compare

Changed

  • Internal dependency cfg-expr updated to 0.15.4, updating builtin targets to Rust 1.71.

hakari 0.16.0

29 Jul 20:14
Compare
Choose a tag to compare

Changed

  • guppy updated to 0.17.1.

guppy 0.17.1

29 Jul 20:08
Compare
Choose a tag to compare

Added

  • PackageMetadata::minimum_rust_version provides the rust-version field of a package as a Version.
  • PackageMetadata::rust_version has been deprecated because it returns a VersionReq even though
    it actually should be a Version. In the next major release of guppy, the current definition of
    rust_version will go away and be replaced with minimum_rust_version.

cargo-hakari 0.9.27

29 Jul 20:16
Compare
Choose a tag to compare

Changed

  • Builtin platforms updated to Rust 1.71.

target-spec-miette 0.3.0

26 Jun 01:20
Compare
Choose a tag to compare

Changed

  • Updated to target-spec 3.

hakari 0.15.0

26 Jun 01:33
Compare
Choose a tag to compare

Changed

  • guppy updated to 0.17.0.

guppy 0.17.0

26 Jun 01:28
Compare
Choose a tag to compare

Changed

  • target-spec updated to version 3.

Fixed

  • Proptest strategy creator names updated from prop010_ to proptest1_.

determinator 0.12.0

26 Jun 01:38
Compare
Choose a tag to compare

Changed

  • Updated guppy to 0.17.0.

cargo-hakari 0.9.26

26 Jun 05:08
Compare
Choose a tag to compare

Changed

  • Internal dependency updates: updated guppy to 0.17.0.