Skip to content

Releases: bytesize-rs/bytesize

bytesize: v1.3.3

31 Mar 06:28
603a713
Compare
Choose a tag to compare
  • Add rust-version field to manifest to support MSRV-aware resolvers.

bytesize: v2.0.1

28 Feb 06:41
d2ac87b
Compare
Choose a tag to compare
  • Add support for precision in Display implementations.

bytesize: v2.0.0

31 Mar 06:29
0b8f894
Compare
Choose a tag to compare
  • Add support for no_std targets.
  • Use IEC (binary) format by default with Display.
  • Use "kB" for SI unit.
  • Add Display type for customizing printed format.
  • Add ByteSize::display() method.
  • Implement Sub<ByteSize> for ByteSize.
  • Implement Sub<impl Into<u64>> for ByteSize.
  • Implement SubAssign<ByteSize> for ByteSize.
  • Implement SubAssign<impl Into<u64>> for ByteSize.
  • Reject parsing non-unit characters after whitespace.
  • Remove ByteSize::to_string_as() method.
  • Remove top-level to_string() method.
  • Remove top-level B constant.

v1.3.2

11 Feb 03:50
110336a
Compare
Choose a tag to compare
  • Reject parsing non-unit characters after whitespace.

v1.3.1

10 Feb 21:39
989d5c5
Compare
Choose a tag to compare

(yanked)

Release 1.3.0

23 Aug 21:08
Compare
Choose a tag to compare

Changes

  • Improved performance by eliminating String creation by utilizing the original &str slice #31 (@ChanTsune)

Release 1.2.0

24 Feb 08:06
Compare
Choose a tag to compare

Changes

Release 1.1.0

30 Jul 22:50
Compare
Choose a tag to compare

Changes

release-1.0.1

22 May 23:34
Compare
Choose a tag to compare

Release 1.0.1

  • #19: feat: impl padding for Display trait for ByteSize