Skip to content

Commit

Permalink
0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinmehall committed Jan 15, 2017
1 parent 65d6d27 commit 80e9732
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Expand Up @@ -3,7 +3,7 @@ members = ["./peg-syntax-ext", "./peg-tests"]

[package]
name = "peg"
version = "0.4.2"
version = "0.5.0"
authors = [ "Kevin Mehall <km@kevinmehall.net>" ]
license = "MIT"
repository = "https://github.com/kevinmehall/rust-peg"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -129,7 +129,7 @@ Add to your `Cargo.toml`:
build = "build.rs"

[build-dependencies]
peg = { version = "0.4" }
peg = { version = "0.5" }
```

Create `build.rs` with:
Expand Down Expand Up @@ -169,7 +169,7 @@ Add to your Cargo.toml:

```toml
[dependencies]
peg-syntax-ext = "0.4.0"
peg-syntax-ext = "0.5.0"
```

Add to your crate root:
Expand Down
4 changes: 2 additions & 2 deletions peg-syntax-ext/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "peg-syntax-ext"
version = "0.4.2"
version = "0.5.0"
authors = [ "Kevin Mehall <km@kevinmehall.net>" ]
license = "MIT"
repository = "https://github.com/kevinmehall/rust-peg"
Expand All @@ -11,7 +11,7 @@ This crate provides the syntax extension plugin for use with Rust nightly.
"""

[dependencies]
peg = { version = "0.4", path = "../" }
peg = { version = "0.5", path = "../" }

[lib]
plugin = true
Expand Down
2 changes: 1 addition & 1 deletion peg-tests/Cargo.toml
Expand Up @@ -8,4 +8,4 @@ description = "Tests for the peg crate"
build = "build.rs"

[build-dependencies]
peg = { version = "0.4", path = "../" }
peg = { version = "0.5", path = "../" }

0 comments on commit 80e9732

Please sign in to comment.