publish 0.13.0

This commit is contained in:
Niko Matsakis 2017-04-07 06:36:53 -04:00
parent 2d3de75fcf
commit 3037d7637b
3 changed files with 6 additions and 6 deletions

View File

@ -69,10 +69,10 @@ version = "0.2.1"
# Add a dependency on the LALRPOP runtime library: # Add a dependency on the LALRPOP runtime library:
[dependencies.lalrpop-util] [dependencies.lalrpop-util]
version = "0.12.5" version = "0.13.0"
[build-dependencies.lalrpop] [build-dependencies.lalrpop]
version = "0.12.5" version = "0.13.0"
``` ```
And create a `build.rs` file that looks like: And create a `build.rs` file that looks like:

View File

@ -151,15 +151,15 @@ look something like:
``` ```
[package] [package]
name = "calculator" name = "calculator"
version = "0.12.5" version = "0.13.0"
authors = ["Niko Matsakis <niko@alum.mit.edu>"] authors = ["Niko Matsakis <niko@alum.mit.edu>"]
build = "build.rs" # <-- We added this and everything after! build = "build.rs" # <-- We added this and everything after!
[build-dependencies] [build-dependencies]
lalrpop = "0.12.5" lalrpop = "0.13.0"
[dependencies] [dependencies]
lalrpop-util = "0.12.5" lalrpop-util = "0.13.0"
regex = "0.2.1" regex = "0.2.1"
``` ```

View File

@ -6,7 +6,7 @@
VERSION=$( VERSION=$(
ls lalrpop*/Cargo.toml | \ ls lalrpop*/Cargo.toml | \
xargs grep "# LALRPOP$" | \ xargs grep "# LALRPOP$" | \
perl -p -i -e 's/.*version = "([0-9.]+)" # LALRPOP$/$1/' | perl -p -e 's/.*version = "([0-9.]+)" # LALRPOP$/$1/' |
sort | sort |
uniq) uniq)