Skip to content

0.2.3

Compare
Choose a tag to compare
@bodil bodil released this 07 Jul 16:50
· 50 commits to master since this release
v0.2.3
abf852a

ADDED

  • SmartString now implements Display. (#6)
  • SmartString now implements FromIterator<char>.
  • Support for serde behind the serde feature flag. (#2)
  • Support for arbitrary behind the arbitrary feature flag.
  • Support for proptest behind the proptest feature flag.

FIXED

  • SmartString::push_str would previously trigger two heap allocations while promoting an inline string to a boxed string, one of which was unnecessary. It now only makes the one strictly necessary allocation. (#5)
  • Fixed a bug where SmartString::remove would panic if you tried to remove the last index in an inline string.