From 80e9732698366376afe3ae87fcaf3b2934cc37c8 Mon Sep 17 00:00:00 2001 From: Kevin Mehall Date: Sun, 15 Jan 2017 12:05:59 -0800 Subject: [PATCH] 0.5.0 --- Cargo.toml | 2 +- README.md | 4 ++-- peg-syntax-ext/Cargo.toml | 4 ++-- peg-tests/Cargo.toml | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 2110aa9..0bed85a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["./peg-syntax-ext", "./peg-tests"] [package] name = "peg" -version = "0.4.2" +version = "0.5.0" authors = [ "Kevin Mehall " ] license = "MIT" repository = "https://github.com/kevinmehall/rust-peg" diff --git a/README.md b/README.md index 26ce5bb..09e09a8 100644 --- a/README.md +++ b/README.md @@ -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: @@ -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: diff --git a/peg-syntax-ext/Cargo.toml b/peg-syntax-ext/Cargo.toml index 32ab21c..592b4d3 100644 --- a/peg-syntax-ext/Cargo.toml +++ b/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 " ] license = "MIT" repository = "https://github.com/kevinmehall/rust-peg" @@ -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 diff --git a/peg-tests/Cargo.toml b/peg-tests/Cargo.toml index d2560c9..019b78e 100644 --- a/peg-tests/Cargo.toml +++ b/peg-tests/Cargo.toml @@ -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 = "../" }