Skip to content

Commit

Permalink
Version 0.16.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Marwes committed Nov 28, 2018
1 parent 273e544 commit 1797a17
Show file tree
Hide file tree
Showing 11 changed files with 39 additions and 30 deletions.
28 changes: 14 additions & 14 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions RELEASES.md
@@ -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)

Expand Down
6 changes: 3 additions & 3 deletions doc/calculator/Cargo.toml
@@ -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"
2 changes: 1 addition & 1 deletion doc/pascal/lalrpop/Cargo.toml
Expand Up @@ -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"
4 changes: 2 additions & 2 deletions doc/src/quick_start_guide.md
Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions doc/src/tutorial/001_adding_lalrpop.md
Expand Up @@ -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"
```

Expand Down
6 changes: 3 additions & 3 deletions doc/whitespace/Cargo.toml
@@ -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"
2 changes: 1 addition & 1 deletion 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 <niko@alum.mit.edu>"]
license = "Apache-2.0/MIT"
build = "build.rs"
Expand Down
2 changes: 1 addition & 1 deletion lalrpop-util/Cargo.toml
Expand Up @@ -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 = ".."
4 changes: 2 additions & 2 deletions 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"
Expand Down Expand Up @@ -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 = []
2 changes: 1 addition & 1 deletion 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::*;
Expand Down

0 comments on commit 1797a17

Please sign in to comment.