yew v0.6.1 Release Notes

Release Date: 2019-11-01 // over 4 years ago
    • #### ⚡️ Features
      • Bring back {}, {*}, and {<number>} capture syntax for tuple structs/enum variants. If your variant or struct doesn't have named fields, you don't need to supply names in the matcher string [116]
      • Allow ! special character in more places.
      • Greatly improve the quality of matcher string parsing errors. [171]
      • Add impl<SW: Switch, T> From<SW> for Route<T>. Now Routes can be created from Switches easily.
      • Allow escaping {, }, and ! special characters by using {{, }}, and !! respectively.
      • Provide a correct error message when attempting to derive Switch for a Unit struct/variant with a capture group.