Skip to content

Releases: LukasKalbertodt/libtest-mimic

v0.8.1

05 Oct 11:57
63e4ec1
Compare
Choose a tag to compare
  • Fix bug when executing trials on fewer threads than trials (thanks @hanna-kruppe for catching this)

v0.8.0

05 Oct 11:24
7413feb
Compare
Choose a tag to compare
  • Breaking: bump MSRV to 1.65
  • Remove threadpool dependency, getting rid of memory leaks observed when running under valgrind (thanks @Felix-El) in #46
  • Switch from termcolor to anstream to get rid of duplicate dependencies (thanks @hanna-kruppe) in #44
  • Bump dev-dependency fastrand to 2 (thanks @alexanderkjall) in #47
  • Fix outdated docs

v0.7.3

10 May 08:40
af6e427
Compare
Choose a tag to compare
  • Default to single-threaded tests for WebAssembly (thanks @alexcrichton) in #41

v0.7.2

10 May 08:39
30dba02
Compare
Choose a tag to compare
  • Fix Conclusion::exit_code (logic was inverted in 0.7.1)

v0.7.1

10 May 08:38
01aba1d
Compare
Choose a tag to compare
  • Add Conclusion::exit_code and note about destructors/cleanup to docs of exit and exit_if_failed e938e537e

v0.7.0

14 Jan 16:37
d68ce73
Compare
Choose a tag to compare
  • Also check kind when filtering tests (thanks @sunshowers) in #30
    • This is potentially breaking as additional or fewer tests might be executed in some situations.
  • Add JSON format output (thanks @PaulWagener and @t-moe) in #35
  • Add no-op flags to add CLI compatibility for IntellJ Rust (thanks @Dinnerbone and @t-moe) #28 / 70cdc55

v0.6.1

20 Jun 19:57
0ff8ac3
Compare
Choose a tag to compare

Fixed

  • Actually spawn as many threads as specified by --test-threads (thanks @hgzimmerman) in #32.
  • Fix & improve docs
  • Fix badge in README

Changed

  • Deemphasize MSRV by removing check and note from README in #24.

v0.6.0

05 Nov 16:53
049ac25
Compare
Choose a tag to compare

Changed

  • Breaking: Updated clap to version 4 (thanks @msrd0)
  • Breaking: Bump MSRV to 1.60 (due to the clap update)

Removed

  • Breaking: Remove FromStr impls for args::{ColorSetting, FormatSetting} (use clap::ValueEnum instead).

v0.5.2

14 Aug 07:30
ca46038
Compare
Choose a tag to compare

Added

Fixed

  • Link in documentation

v0.5.1

13 Aug 14:43
05346b3
Compare
Choose a tag to compare

Added

  • Trial::{name, kind, has_ignored_flag, is_test, is_bench} getters