bump version to 4.0.0

This commit is contained in:
Geoffroy Couprie 2018-05-14 18:04:25 +02:00
parent 1286859f45
commit ba1d6e0589
2 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
[package]
name = "nom"
version = "4.0.0-beta3"
version = "4.0.0"
authors = [ "contact@geoffroycouprie.com" ]
description = "A byte-oriented, zero-copy, parser combinators library"
license = "MIT"

View File

@ -183,7 +183,7 @@ nom is available on [crates.io](https://crates.io/crates/nom) and can be include
```toml
[dependencies]
nom = "^3.2"
nom = "^4.0"
```
Then include it in your code like this:
@ -208,7 +208,7 @@ You can activate those features like this:
```toml
[dependencies.nom]
version = "^3.2"
version = "^4.0"
features = ["regexp"]
```