Version 0.16.2

This commit is contained in:
Markus Westerlind 2018-11-28 19:56:04 +01:00
parent 273e54452f
commit 1797a173c9
11 changed files with 39 additions and 30 deletions

28
Cargo.lock generated
View File

@ -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]]

View File

@ -1,3 +1,12 @@
<a name="0.16.2"></a>
# Version 0.16.2 (2018-11-22)
## Fixes
* Fix type annotation for inline actions
Thanks to the following contributors:
- @tjade273
<a name="0.16.1"></a>
# Version 0.16.1 (2018-10-27)

View File

@ -1,17 +1,17 @@
[package]
name = "calculator"
version = "0.16.1"
version = "0.16.2"
authors = ["Niko Matsakis <niko@alum.mit.edu>"]
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"

View File

@ -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"

View File

@ -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:

View File

@ -28,10 +28,10 @@ version = "0.1.0"
authors = ["Niko Matsakis <niko@alum.mit.edu>"]
[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"
```

View File

@ -1,13 +1,13 @@
[package]
name = "whitespace"
version = "0.16.1"
version = "0.16.2"
authors = ["Mako <jlauve@rsmw.net>"]
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"

View File

@ -1,6 +1,6 @@
[package]
name = "lalrpop-test"
version = "0.16.1" # LALRPOP
version = "0.16.2" # LALRPOP
authors = ["Niko Matsakis <niko@alum.mit.edu>"]
license = "Apache-2.0/MIT"
build = "build.rs"

View File

@ -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 <niko@alum.mit.edu>"]
workspace = ".."

View File

@ -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 = []

View File

@ -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::*;