diff --git a/Cargo.lock b/Cargo.lock index 78cfe5078..36ac3c9da 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -73,10 +73,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "calculator" -version = "0.16.1" +version = "0.16.2" dependencies = [ - "lalrpop 0.16.1", - "lalrpop-util 0.16.1", + "lalrpop 0.16.2", + "lalrpop-util 0.16.2", "regex 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -182,7 +182,7 @@ dependencies = [ [[package]] name = "lalrpop" -version = "0.16.1" +version = "0.16.2" dependencies = [ "ascii-canvas 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", @@ -191,7 +191,7 @@ dependencies = [ "docopt 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "ena 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", "itertools 0.7.8 (registry+https://github.com/rust-lang/crates.io-index)", - "lalrpop-util 0.16.1", + "lalrpop-util 0.16.2", "petgraph 0.4.13 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)", "regex 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", @@ -206,17 +206,17 @@ dependencies = [ [[package]] name = "lalrpop-test" -version = "0.16.1" +version = "0.16.2" dependencies = [ "diff 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)", - "lalrpop 0.16.1", - "lalrpop-util 0.16.1", + "lalrpop 0.16.2", + "lalrpop-util 0.16.2", "regex 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "lalrpop-util" -version = "0.16.1" +version = "0.16.2" [[package]] name = "lazy_static" @@ -272,8 +272,8 @@ name = "pascal" version = "0.11.0" dependencies = [ "docopt 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "lalrpop 0.16.1", - "lalrpop-util 0.16.1", + "lalrpop 0.16.2", + "lalrpop-util 0.16.2", "regex 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", "serde 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.80 (registry+https://github.com/rust-lang/crates.io-index)", @@ -528,10 +528,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "whitespace" -version = "0.16.1" +version = "0.16.2" dependencies = [ - "lalrpop 0.16.1", - "lalrpop-util 0.16.1", + "lalrpop 0.16.2", + "lalrpop-util 0.16.2", ] [[package]] diff --git a/RELEASES.md b/RELEASES.md index 4a6e8343d..28035d0af 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,3 +1,12 @@ + +# Version 0.16.2 (2018-11-22) + +## Fixes +* Fix type annotation for inline actions + +Thanks to the following contributors: +- @tjade273 + # Version 0.16.1 (2018-10-27) diff --git a/doc/calculator/Cargo.toml b/doc/calculator/Cargo.toml index 9aa2a7ae7..54d02ad43 100644 --- a/doc/calculator/Cargo.toml +++ b/doc/calculator/Cargo.toml @@ -1,17 +1,17 @@ [package] name = "calculator" -version = "0.16.1" +version = "0.16.2" authors = ["Niko Matsakis "] build = "build.rs" # <-- We added this and everything after! workspace = "../.." [build-dependencies.lalrpop] -version = "0.16.1" +version = "0.16.2" path = "../../lalrpop" [dependencies] regex = "1" [dependencies.lalrpop-util] -version = "0.16.1" +version = "0.16.2" path = "../../lalrpop-util" diff --git a/doc/pascal/lalrpop/Cargo.toml b/doc/pascal/lalrpop/Cargo.toml index 75591fbd7..6c906d696 100644 --- a/doc/pascal/lalrpop/Cargo.toml +++ b/doc/pascal/lalrpop/Cargo.toml @@ -14,5 +14,5 @@ serde = "1.0" serde_derive = "1.0" [dependencies.lalrpop-util] -version = "0.16.1" +version = "0.16.2" path = "../../../lalrpop-util" diff --git a/doc/src/quick_start_guide.md b/doc/src/quick_start_guide.md index 77396f69b..09057e9df 100644 --- a/doc/src/quick_start_guide.md +++ b/doc/src/quick_start_guide.md @@ -18,12 +18,12 @@ build = "build.rs" # LALRPOP preprocessing # (If you write your own tokenizer, or already have the regex # crate, you can skip this dependency.) [dependencies] -lalrpop-util = "0.16.1" +lalrpop-util = "0.16.2" regex = "0.2.0" # Add a build-time dependency on the lalrpop library: [build-dependencies] -lalrpop = "0.16.1" +lalrpop = "0.16.2" ``` Next create a `build.rs` file that looks like: diff --git a/doc/src/tutorial/001_adding_lalrpop.md b/doc/src/tutorial/001_adding_lalrpop.md index 0c456d71e..cab0ea538 100644 --- a/doc/src/tutorial/001_adding_lalrpop.md +++ b/doc/src/tutorial/001_adding_lalrpop.md @@ -28,10 +28,10 @@ version = "0.1.0" authors = ["Niko Matsakis "] [build-dependencies] # <-- We added this and everything after! -lalrpop = "0.16.1" +lalrpop = "0.16.2" [dependencies] -lalrpop-util = "0.16.1" +lalrpop-util = "0.16.2" regex = "0.2.1" ``` diff --git a/doc/whitespace/Cargo.toml b/doc/whitespace/Cargo.toml index affd74e23..c3e21295f 100644 --- a/doc/whitespace/Cargo.toml +++ b/doc/whitespace/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "whitespace" -version = "0.16.1" +version = "0.16.2" authors = ["Mako "] build = "build.rs" [build-dependencies.lalrpop] -version = "0.16.1" +version = "0.16.2" path = "../../lalrpop" [dependencies.lalrpop-util] -version = "0.16.1" +version = "0.16.2" path = "../../lalrpop-util" diff --git a/lalrpop-test/Cargo.toml b/lalrpop-test/Cargo.toml index 3e3d86115..8f9c55d56 100644 --- a/lalrpop-test/Cargo.toml +++ b/lalrpop-test/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lalrpop-test" -version = "0.16.1" # LALRPOP +version = "0.16.2" # LALRPOP authors = ["Niko Matsakis "] license = "Apache-2.0/MIT" build = "build.rs" diff --git a/lalrpop-util/Cargo.toml b/lalrpop-util/Cargo.toml index a34c280f3..6791b39ca 100644 --- a/lalrpop-util/Cargo.toml +++ b/lalrpop-util/Cargo.toml @@ -3,6 +3,6 @@ name = "lalrpop-util" description = "Runtime library for parsers generated by LALRPOP" repository = "https://github.com/lalrpop/lalrpop" license = "Apache-2.0/MIT" -version = "0.16.1" # LALRPOP +version = "0.16.2" # LALRPOP authors = ["Niko Matsakis "] workspace = ".." diff --git a/lalrpop/Cargo.toml b/lalrpop/Cargo.toml index 224d5b778..707825632 100644 --- a/lalrpop/Cargo.toml +++ b/lalrpop/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lalrpop" -version = "0.16.1" # LALRPOP +version = "0.16.2" # LALRPOP description = "convenient LR(1) parser generator" repository = "https://github.com/lalrpop/lalrpop" readme = "../README.md" @@ -38,7 +38,7 @@ rand = "0.5" [dependencies.lalrpop-util] path = "../lalrpop-util" -version = "0.16.1" # LALRPOP +version = "0.16.2" # LALRPOP [features] test = [] diff --git a/lalrpop/src/parser/lrgrammar.rs b/lalrpop/src/parser/lrgrammar.rs index 0eec4e48c..a33205db8 100644 --- a/lalrpop/src/parser/lrgrammar.rs +++ b/lalrpop/src/parser/lrgrammar.rs @@ -1,4 +1,4 @@ -// auto-generated: "lalrpop 0.16.1" +// auto-generated: "lalrpop 0.16.2" // sha256: ff8e66bf9bffcc39fd4d5baa2fca2d43c14f758db82e5c6ea620a3edf8dccc74 use string_cache::DefaultAtom as Atom; use grammar::parse_tree::*;