mirror of
https://github.com/fluencelabs/lalrpop
synced 2025-03-16 17:00:53 +00:00
Merge pull request #59 from nikomatsakis/new-version
Bump version to 0.9.0
This commit is contained in:
commit
e203016952
@ -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
|
||||
|
@ -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"
|
||||
|
@ -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
|
||||
|
@ -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"
|
||||
|
||||
|
@ -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>"]
|
||||
|
@ -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).
|
||||
|
Loading…
x
Reference in New Issue
Block a user