From ba1d6e0589458bc46aef05b1ebd13ce2b3b1b816 Mon Sep 17 00:00:00 2001 From: Geoffroy Couprie Date: Mon, 14 May 2018 18:04:25 +0200 Subject: [PATCH] bump version to 4.0.0 --- Cargo.toml | 2 +- README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 757d2d646..771293521 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" diff --git a/README.md b/README.md index c4e64e8dc..cf6bad722 100644 --- a/README.md +++ b/README.md @@ -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"] ```