publish version 0.3.0

This commit is contained in:
Niko Matsakis 2015-08-15 22:06:01 -04:00
parent 9e6885bf3c
commit b4b88cd059
6 changed files with 12 additions and 12 deletions

View File

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

View File

@ -1,6 +1,6 @@
[package]
name = "lalrpop-intern"
version = "0.2.0" # LALRPOP
version = "0.3.0" # LALRPOP
description = "Simple string interner used by LALRPOP"
repository = "https://github.com/nikomatsakis/lalrpop"
license = "Unlicense"

View File

@ -1,6 +1,6 @@
[package]
name = "lalrpop-snap"
version = "0.2.0" # LALRPOP
version = "0.3.0" # LALRPOP
description = "snapshot of LALRPOP for use in bootstrapping"
repository = "https://github.com/nikomatsakis/lalrpop"
license = "Unlicense"
@ -18,8 +18,8 @@ rusty-peg = "0.3"
[dependencies.lalrpop-util]
path = "../lalrpop-util"
version = "0.2.0" # LALRPOP
version = "0.3.0" # LALRPOP
[dependencies.lalrpop-intern]
path = "../lalrpop-intern"
version = "0.2.0" # LALRPOP
version = "0.3.0" # LALRPOP

View File

@ -1,6 +1,6 @@
[package]
name = "lalrpop-test"
version = "0.2.0" # LALRPOP
version = "0.3.0" # LALRPOP
authors = ["Niko Matsakis <niko@alum.mit.edu>"]
build = "build.rs"

View File

@ -3,5 +3,5 @@ name = "lalrpop-util"
description = "Runtime library for parsers generated by LALRPOP"
repository = "https://github.com/nikomatsakis/lalrpop"
license = "Unlicense"
version = "0.2.0" # LALRPOP
version = "0.3.0" # LALRPOP
authors = ["Niko Matsakis <niko@alum.mit.edu>"]

View File

@ -1,6 +1,6 @@
[package]
name = "lalrpop"
version = "0.2.0" # LALRPOP
version = "0.3.0" # LALRPOP
description = "convenient LR(1) parser generator"
repository = "https://github.com/nikomatsakis/lalrpop"
readme = "../README.md"
@ -19,15 +19,15 @@ unicode-xid = "0.0.2"
[dependencies.lalrpop-util]
path = "../lalrpop-util"
version = "0.2.0" # LALRPOP
version = "0.3.0" # LALRPOP
[dependencies.lalrpop-intern]
path = "../lalrpop-intern"
version = "0.2.0" # LALRPOP
version = "0.3.0" # LALRPOP
[build-dependencies.lalrpop-snap]
path = "../lalrpop-snap"
version = "0.2.0" # LALRPOP
version = "0.3.0" # LALRPOP
# Enable codegen units: this is probably not the optimal way to do it,
# but codegen units helps a lot with compiling lrgrammar.rs (I think).