Merge pull request #59 from nikomatsakis/new-version

Bump version to 0.9.0
This commit is contained in:
Niko Matsakis 2016-01-23 11:41:21 -05:00
commit e203016952
6 changed files with 17 additions and 11 deletions

View File

@ -1,4 +1,10 @@
# Version 0.8 (not yet released)
# Version 0.9
Miscellaneous bug fixes, mostly. Processing for a `build.rs` file now
starts from the project directory, rather than being hardcoded to
start from `src`.
# Version 0.8
Add support for inlining nonterminals. Nonterminals can now be
annotated with `#[inline]`. If you do so, each use of the nonterminal

View File

@ -1,6 +1,6 @@
[package]
name = "lalrpop-intern"
version = "0.8.0" # LALRPOP
version = "0.9.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.8.0" # LALRPOP
version = "0.9.0" # LALRPOP
description = "snapshot of LALRPOP for use in bootstrapping"
repository = "https://github.com/nikomatsakis/lalrpop"
license = "Unlicense"
@ -18,8 +18,8 @@ petgraph = "0.1.11"
[dependencies.lalrpop-util]
path = "../lalrpop-util"
version = "0.8.0" # LALRPOP
version = "0.9.0" # LALRPOP
[dependencies.lalrpop-intern]
path = "../lalrpop-intern"
version = "0.8.0" # LALRPOP
version = "0.9.0" # LALRPOP

View File

@ -1,6 +1,6 @@
[package]
name = "lalrpop-test"
version = "0.8.0" # LALRPOP
version = "0.9.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.8.0" # LALRPOP
version = "0.9.0" # LALRPOP
authors = ["Niko Matsakis <niko@alum.mit.edu>"]

View File

@ -1,6 +1,6 @@
[package]
name = "lalrpop"
version = "0.8.0" # LALRPOP
version = "0.9.0" # LALRPOP
description = "convenient LR(1) parser generator"
repository = "https://github.com/nikomatsakis/lalrpop"
readme = "../README.md"
@ -24,15 +24,15 @@ rand = "0.3"
[dependencies.lalrpop-util]
path = "../lalrpop-util"
version = "0.8.0" # LALRPOP
version = "0.9.0" # LALRPOP
[dependencies.lalrpop-intern]
path = "../lalrpop-intern"
version = "0.8.0" # LALRPOP
version = "0.9.0" # LALRPOP
[build-dependencies.lalrpop-snap]
path = "../lalrpop-snap"
version = "0.8.0" # LALRPOP
version = "0.9.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).