nom v1.2.1 Release Notes

Release Date: 2016-02-23 // about 8 years ago
  • Thanks

    • @sourrust for adding methods to IResult
    • ๐Ÿ”จ @tstorch for the test refactoring, and for adding methods to IResult and Needed
    • @joelself for fixing the method system

    โž• Added

    • mapping methods over IResult and Needed

    ๐Ÿ”„ Changed

    • apply_rf is renamed to apply_m. This will not warrant a major version, since it is part missing from the methods feture added in the 1.2.0 release
    • the regexp_macros feature that used regex! to precompile regular expressions has been replaced by the normal regex engine combined with lazy_static

    ๐Ÿ›  Fixed

    • ๐Ÿ“œ when a parser or combinator was returning an empty buffer as remaining part, it was generating one from a static empty string. This was messing with buffer offset calculation. Now, that empty slice is taken like this: &input[input.len()..].
    • The regexp_macros and no_std feature build again and are now tested with Travis CI