Skip to content

Commit

Permalink
Bump version to 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Geal committed May 7, 2015
1 parent 1c59fda commit 61bf435
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 3 deletions.
22 changes: 21 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,25 @@

### Changed

## 0.3.0 - 2015-05-07

### Thanks
- @filipegoncalves for some documentation and the new eof parser
- @CrimsonVoid for putting fully qualified types in the macros
- @lu_zero for some documentation fixes

### Added
- new error types that can contain an error code, an input slice, and a list of following errors
- `error!` will cut backtracking and return directly from the parser, with a specified error code
- `eof` parser, successful if there is no more input
- specific error codes for the parsers provided by nom

### Changed
- fully qualified types in macros. A lot of imports are not needed anymore

### Removed
- `FlatMap`, `FlatpMapOpt` and `Functor` traits (replaced by `map!`, `map_opt!` and `map_res!`)

## 0.2.2 - 2015-04-12

### Thanks
Expand Down Expand Up @@ -114,7 +133,8 @@
### Fixed
- closure syntax change

[unreleased]: https://github.com/Geal/nom/compare/0.2.2...HEAD
[unreleased]: https://github.com/Geal/nom/compare/0.3.0...HEAD
[0.3.0]: https://github.com/Geal/nom/compare/0.2.2...0.3.0
[0.2.2]: https://github.com/Geal/nom/compare/0.2.1...0.2.2
[0.2.1]: https://github.com/Geal/nom/compare/0.2.0...0.2.1
[0.2.0]: https://github.com/Geal/nom/compare/0.1.6...0.2.0
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

name = "nom"
version = "0.2.2"
version = "0.3.0"
authors = [ "contact@geoffroycouprie.com" ]
description = "A byte oriented, zero copy, parser combinators library"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ nom is available on [crates.io](https://crates.io/crates/nom) and can be include

```toml
[dependencies]
nom = "~0.2.0"
nom = "~0.3.0"
```

Then include it in your code like this:
Expand Down

0 comments on commit 61bf435

Please sign in to comment.