Skip to content

Commit

Permalink
update changelog and bump version to 3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Geal committed Jul 24, 2017
1 parent e59897c commit b05c3ed
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 3 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,31 @@

### Changed

## 3.2.0 - 2017-07-24

### Thanks

- @jedireza for documentation fixes
- @gmorenz for the `bytes` combinator
- @meh for character combinator fixes for UTF-8
- @jethrogb for avoiding move issues in `separated_list`

### Changed

- new layout for the main page of documentation
- `anychar` can now work on any input type
- `length_bytes` is now an alias for `length_data`

### Fixed

- `one_of`, `none_of` and `char` will now index correctly UTF-8 characters
- the `compiler_error` macro is now correctly exported


### Added

- the `bytes` combinator transforms a bit stream back to a byte slice for child parsers

## 3.1.0 - 2017-06-16

### Thanks
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 = "3.1.0"
version = "3.2.0"
authors = [ "[email protected]" ]
description = "A byte-oriented, zero-copy, parser combinators library"
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ nom is available on [crates.io](https://crates.io/crates/nom) and can be include

```toml
[dependencies]
nom = "^3.1"
nom = "^3.2"
```

Then include it in your code like this:
Expand All @@ -67,7 +67,7 @@ You can activate those features like this:

```toml
[dependencies.nom]
version = "^3.1"
version = "^3.2"
features = ["regexp"]
```

Expand Down

0 comments on commit b05c3ed

Please sign in to comment.