diff --git a/Cargo.lock b/Cargo.lock
index 47de680..935a071 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -100,10 +100,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "calculator"
-version = "0.19.0"
+version = "0.19.1"
dependencies = [
- "lalrpop 0.19.0",
- "lalrpop-util 0.19.0",
+ "lalrpop 0.19.1",
+ "lalrpop-util 0.19.1",
"regex 1.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
]
@@ -228,7 +228,7 @@ dependencies = [
[[package]]
name = "lalrpop"
-version = "0.19.0"
+version = "0.19.1"
dependencies = [
"ascii-canvas 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
"atty 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -237,7 +237,7 @@ dependencies = [
"docopt 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
"ena 0.14.0 (registry+https://github.com/rust-lang/crates.io-index)",
"itertools 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
- "lalrpop-util 0.19.0",
+ "lalrpop-util 0.19.1",
"petgraph 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
"rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
"regex 1.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -252,17 +252,17 @@ dependencies = [
[[package]]
name = "lalrpop-test"
-version = "0.19.0"
+version = "0.19.1"
dependencies = [
"diff 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
- "lalrpop 0.19.0",
- "lalrpop-util 0.19.0",
+ "lalrpop 0.19.1",
+ "lalrpop-util 0.19.1",
"regex 1.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "lalrpop-util"
-version = "0.19.0"
+version = "0.19.1"
dependencies = [
"regex 1.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
]
@@ -305,8 +305,8 @@ name = "pascal"
version = "0.11.0"
dependencies = [
"docopt 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
- "lalrpop 0.19.0",
- "lalrpop-util 0.19.0",
+ "lalrpop 0.19.1",
+ "lalrpop-util 0.19.1",
"regex 1.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
"serde 1.0.110 (registry+https://github.com/rust-lang/crates.io-index)",
"serde_derive 1.0.110 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -530,10 +530,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "whitespace"
-version = "0.19.0"
+version = "0.19.1"
dependencies = [
- "lalrpop 0.19.0",
- "lalrpop-util 0.19.0",
+ "lalrpop 0.19.1",
+ "lalrpop-util 0.19.1",
]
[[package]]
diff --git a/RELEASES.md b/RELEASES.md
index 6b30fe0..1a8d89a 100644
--- a/RELEASES.md
+++ b/RELEASES.md
@@ -1,3 +1,9 @@
+
+## 0.19.1 (2020-09-04)
+
+* Reduce work for LLVMs inliner
+
+
## 0.19.0 (2020-05-11)
diff --git a/doc/calculator/Cargo.toml b/doc/calculator/Cargo.toml
index 403238d..3bfed7a 100644
--- a/doc/calculator/Cargo.toml
+++ b/doc/calculator/Cargo.toml
@@ -1,12 +1,12 @@
[package]
name = "calculator"
-version = "0.19.0"
+version = "0.19.1"
authors = ["Niko Matsakis "]
build = "build.rs" # <-- We added this and everything after!
workspace = "../.."
[build-dependencies.lalrpop]
-version = "0.19.0"
+version = "0.19.1"
path = "../../lalrpop"
features = ["lexer"]
@@ -14,5 +14,5 @@ features = ["lexer"]
regex = "1"
[dependencies.lalrpop-util]
-version = "0.19.0"
+version = "0.19.1"
path = "../../lalrpop-util"
diff --git a/doc/pascal/lalrpop/Cargo.toml b/doc/pascal/lalrpop/Cargo.toml
index 9e189ac..4460c1f 100644
--- a/doc/pascal/lalrpop/Cargo.toml
+++ b/doc/pascal/lalrpop/Cargo.toml
@@ -15,5 +15,5 @@ serde = "1.0"
serde_derive = "1.0"
[dependencies.lalrpop-util]
-version = "0.19.0"
+version = "0.19.1"
path = "../../../lalrpop-util"
diff --git a/doc/src/quick_start_guide.md b/doc/src/quick_start_guide.md
index ec57c86..ec7fe26 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.19.0"
+lalrpop-util = "0.19.1"
regex = "1"
# Add a build-time dependency on the lalrpop library:
[build-dependencies]
-lalrpop = "0.19.0"
+lalrpop = "0.19.1"
# If you do not supply your own, external lexer you also need the `lexer` feature
# lalrpop = { version = "0.18.1", features = ["lexer"] }
```
diff --git a/doc/src/tutorial/001_adding_lalrpop.md b/doc/src/tutorial/001_adding_lalrpop.md
index a00e982..59515e9 100644
--- a/doc/src/tutorial/001_adding_lalrpop.md
+++ b/doc/src/tutorial/001_adding_lalrpop.md
@@ -30,10 +30,10 @@ version = "0.1.0"
authors = ["Niko Matsakis "]
[build-dependencies] # <-- We added this and everything after!
-lalrpop = "0.19.0"
+lalrpop = "0.19.1"
[dependencies]
-lalrpop-util = "0.19.0"
+lalrpop-util = "0.19.1"
regex = "1"
```
diff --git a/doc/whitespace/Cargo.toml b/doc/whitespace/Cargo.toml
index 9866a1b..b315df2 100644
--- a/doc/whitespace/Cargo.toml
+++ b/doc/whitespace/Cargo.toml
@@ -1,13 +1,13 @@
[package]
name = "whitespace"
-version = "0.19.0"
+version = "0.19.1"
authors = ["Mako "]
build = "build.rs"
[build-dependencies.lalrpop]
-version = "0.19.0"
+version = "0.19.1"
path = "../../lalrpop"
[dependencies.lalrpop-util]
-version = "0.19.0"
+version = "0.19.1"
path = "../../lalrpop-util"
diff --git a/lalrpop-test/Cargo.toml b/lalrpop-test/Cargo.toml
index 3b27aac..c2ad1d8 100644
--- a/lalrpop-test/Cargo.toml
+++ b/lalrpop-test/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "lalrpop-test"
-version = "0.19.0" # LALRPOP
+version = "0.19.1" # 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 7eb5921..88ef922 100644
--- a/lalrpop-util/Cargo.toml
+++ b/lalrpop-util/Cargo.toml
@@ -3,7 +3,7 @@ name = "lalrpop-util"
description = "Runtime library for parsers generated by LALRPOP"
repository = "https://github.com/lalrpop/lalrpop"
license = "Apache-2.0/MIT"
-version = "0.19.0" # LALRPOP
+version = "0.19.1" # LALRPOP
authors = ["Niko Matsakis "]
workspace = ".."
diff --git a/lalrpop/Cargo.toml b/lalrpop/Cargo.toml
index e2fe889..68bcb1a 100644
--- a/lalrpop/Cargo.toml
+++ b/lalrpop/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "lalrpop"
-version = "0.19.0" # LALRPOP
+version = "0.19.1" # LALRPOP
description = "convenient LR(1) parser generator"
repository = "https://github.com/lalrpop/lalrpop"
readme = "../README.md"
@@ -38,7 +38,7 @@ rand = "0.7"
[dependencies.lalrpop-util]
path = "../lalrpop-util"
-version = "0.19.0" # LALRPOP
+version = "0.19.1" # LALRPOP
[features]
# Feature used when developing LALRPOP. Tells the build script to use an existing lalrpop binary to
diff --git a/lalrpop/src/parser/lrgrammar.rs b/lalrpop/src/parser/lrgrammar.rs
index c10f8ac..20fedf5 100644
--- a/lalrpop/src/parser/lrgrammar.rs
+++ b/lalrpop/src/parser/lrgrammar.rs
@@ -1,4 +1,4 @@
-// auto-generated: "lalrpop 0.19.0"
+// auto-generated: "lalrpop 0.19.1"
// sha256: 7429c0f7a93c938035ee9983794eb7106fc6980f07c91a8ea4971f93ee6af
use string_cache::DefaultAtom as Atom;
use grammar::parse_tree::*;
diff --git a/publish.sh b/publish.sh
index d1f9cde..5a222a6 100755
--- a/publish.sh
+++ b/publish.sh
@@ -36,7 +36,7 @@ function publish {
}
publish lalrpop-util
-sleep 10 # Wait for lalrpop-util to be available on crates.io
+sleep 25 # Wait for lalrpop-util to be available on crates.io
publish lalrpop
git tag $VERSION