Skip to content

Releases: Blobfolio/trimothy

v0.6.1

09 Jan 17:52
Compare
Choose a tag to compare

Changed

  • Bump brunch to 0.8 (dev)
  • Miscellaneous code changes and lints

v0.6.0

28 Nov 19:05
Compare
Choose a tag to compare

New

  • impl TrimMut for Cow<str>
  • impl TrimMatchesMut for Cow<str>
  • impl TrimMut for Cow<[u8]>
  • impl TrimMatchesMut for Cow<[u8]>

Changed

  • Bump brunch to 0.7 (dev)
  • Miscellaneous code changes and lints

v0.5.0

19 Nov 19:54
Compare
Choose a tag to compare

New

  • TrimNormal trait
  • TrimNormalBytes trait
  • TrimNormalChars trait

Removed

  • NormalizeWhitespace (use a TrimNormal trait instead)

v0.4.0

15 Nov 19:58
Compare
Choose a tag to compare

Changed

  • trim_mut, trim_start_mut, and trim_end_mut have been generalized to accept any of the following:
    • A single T;
    • An array or slice of T;
    • A &BTreeSet<T>;
    • A custom callback with signature Fn(T) -> bool;
      • Callbacks now require Copy;
  • Bump MSRV to 1.81

v0.3.1

05 Sep 19:13
Compare
Choose a tag to compare

Changed

  • Miscellaneous code cleanup and lints
  • Bump brunch to 0.6

v0.3.0

29 Jul 19:25
Compare
Choose a tag to compare

Changed

  • Bump MSRV 1.80.0
  • Minor code tweaks

Removed

  • TrimSlice trait

v0.2.3

25 Jul 20:41
Compare
Choose a tag to compare

This release deprecates the library's TrimSlice trait now that the core's <[u8]>::trim_ascii family of methods are stable.

v0.2.2

05 Oct 03:28
Compare
Choose a tag to compare

New

  • NormalizeWhitespace::normalized_control_and_whitespace member method

v0.2.1

05 Oct 01:59
Compare
Choose a tag to compare

Changed

  • Refactor/extend NormalizeWhitespace to work for all u8/char Iterators

v0.2.0

04 Oct 05:08
Compare
Choose a tag to compare

New

  • NormalizeWhitespace trait

Misc

  • Add no_std check to CI
  • Workaround for slow MSRV delta hell in CI