From 71df80794917e28fbd08693197fb0f571682cf9d Mon Sep 17 00:00:00 2001 From: johannes Date: Wed, 24 Jan 2018 17:25:28 +0100 Subject: [PATCH] update version strings in README.md and doc/tutorial.md to 0.14.0 --- README.md | 4 ++-- doc/tutorial.md | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 471d3e2..f1b94ab 100644 --- a/README.md +++ b/README.md @@ -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: diff --git a/doc/tutorial.md b/doc/tutorial.md index ef2e623..cff233c 100644 --- a/doc/tutorial.md +++ b/doc/tutorial.md @@ -151,15 +151,15 @@ look something like: ``` [package] name = "calculator" -version = "0.13.1" +version = "0.14.0" authors = ["Niko Matsakis "] 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" ```