• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# unreleased
2
3# 0.5.0
4
5- Add `no_std` support.
6- Remove non-additive `unicode` feature. The library now uses `char::is_alphanumeric`
7  instead of the `unicode-segmentation` library to determine word boundaries in all cases.
8
9# 0.4.1
10
11Improvements:
12
13- Add Train-Case support
14
15# 0.4.0
16
17Breaking changes:
18
19* Make unicode support optional (off by default). Enable the `unicode` crate
20  feature if you need unicode support.
21* Rename all traits from `SomeCase` to `ToSomeCase`, matching `std`s convention
22  of beginning trait names with a verb (`ToOwned`, `AsRef`, …)
23* Rename `ToMixedCase` to `ToLowerCamelCase`
24* Rename `ToCamelCase` to `ToUpperCamelCase`
25* Add `ToPascalCase` as an alias to `ToUpperCamelCase`
26