diff --git a/CHANGELOG.md b/CHANGELOG.md index e08b1bd..d62c6be 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,15 @@ ### Changed +## 0.3.7 - 2015-06-24 + +### Added +- `expr_res!` and `expr_opt!` evaluate an expression returning a Result or Opt and convert it to IResult +- `AsBytes` is implemented for fixed size arrays. This allows `tag!([41u8, 42u8])` + +### Fixed +- `count_fixed!` argument parsing works again + ## 0.3.6 - 2015-06-15 ### Added @@ -210,7 +219,8 @@ ## Compare code -* [unreleased]: https://github.com/Geal/nom/compare/0.3.6...HEAD +* [unreleased]: https://github.com/Geal/nom/compare/0.3.7...HEAD +* [0.3.7]: https://github.com/Geal/nom/compare/0.3.5...0.3.7 * [0.3.6]: https://github.com/Geal/nom/compare/0.3.5...0.3.6 * [0.3.5]: https://github.com/Geal/nom/compare/0.3.4...0.3.5 * [0.3.4]: https://github.com/Geal/nom/compare/0.3.3...0.3.4 diff --git a/Cargo.toml b/Cargo.toml index 9534aa5..8eb4ab1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "nom" -version = "0.3.6" +version = "0.3.7" authors = [ "contact@geoffroycouprie.com" ] description = "A byte oriented, zero copy, parser combinators library" license = "MIT"