Skip to content

Releases: havenwood/word-tally

v0.15.0

21 Nov 19:25
Compare
Choose a tag to compare
v0.15.0 Pre-release
Pre-release

Changelog

  • Switch from PathBuf to String to represent source since "-" is not a proper path
  • Add constructor helpers and refactor

v0.14.0

06 Nov 12:27
Compare
Choose a tag to compare
v0.14.0 Pre-release
Pre-release

Changelog

  • Use a HashSet for retaining words
  • Remove the "only" word filter
  • Extract an Input & Ouput for reading & writing
  • Remove --debug flag, merging debug output into --verbose
  • Extract a Verbose struct

v0.13.0

10 Oct 22:37
Compare
Choose a tag to compare
v0.13.0 Pre-release
Pre-release

Changelog

  • Make tally() non-consuming and add a consuming into_tally()
  • Prefer usize to u64 for len()-like counts
  • Remove the avg field
  • Add a Reader boxed type for Read trait
  • Enclose Case and Sort in an Options struct

v0.12.0

30 Sep 06:54
Compare
Choose a tag to compare
v0.12.0 Pre-release
Pre-release

Changelog

  • Extract filters and options into their own mods
  • Apply min chars filter after initial tally
  • Move the Option outside the word filters

v0.11.0

30 Sep 02:20
Compare
Choose a tag to compare
v0.11.0 Pre-release
Pre-release

Changelog

  • Switch MinChars and MinCount filters to Option<MinChars> and Option<MinCount>

v0.10.0

14 Sep 05:26
Compare
Choose a tag to compare
v0.10.0 Pre-release
Pre-release

Changelog

  • Count min chars by grapheme clusters
  • Drop dependency on clap_stdin
  • Use Box<str> instead of String for words

v0.9.0

04 Sep 18:25
Compare
Choose a tag to compare
v0.9.0 Pre-release
Pre-release

Changelog

  • Convert flag Structs into simpler newtypes
  • Update clap-stdin and use the new public filenames()

v0.8.2

26 Jul 18:12
Compare
Choose a tag to compare
v0.8.2 Pre-release
Pre-release

Changelog

  • Fix a nit unused reference that was immediately dereferenced

v0.8.1

26 Jul 18:09
Compare
Choose a tag to compare
v0.8.1 Pre-release
Pre-release

Changelog

  • Use OnceLock now that it's in stable, and remove once_cell dependency.

v0.8.0

26 Jul 18:07
Compare
Choose a tag to compare
v0.8.0 Pre-release
Pre-release

Changelog

  • Switch tally from Vec<T> to Box<[T]>