update version strings in README.md and doc/tutorial.md to 0.14.0

This commit is contained in:
johannes 2018-01-24 17:25:28 +01:00
parent 84a49aec05
commit 71df807949
2 changed files with 5 additions and 5 deletions

View File

@ -69,10 +69,10 @@ version = "0.2.0"
# Add a dependency on the LALRPOP runtime library:
[dependencies.lalrpop-util]
version = "0.13.1"
version = "0.14.0"
[build-dependencies.lalrpop]
version = "0.13.1"
version = "0.14.0"
```
And create a `build.rs` file that looks like:

View File

@ -151,15 +151,15 @@ look something like:
```
[package]
name = "calculator"
version = "0.13.1"
version = "0.14.0"
authors = ["Niko Matsakis <niko@alum.mit.edu>"]
build = "build.rs" # <-- We added this and everything after!
[build-dependencies]
lalrpop = "0.13.1"
lalrpop = "0.14.0"
[dependencies]
lalrpop-util = "0.13.1"
lalrpop-util = "0.14.0"
regex = "0.2.1"
```