From 1225d3e97295f7e5b50ecc82255c1cbd325a145a Mon Sep 17 00:00:00 2001 From: dalance Date: Thu, 12 Dec 2019 15:15:40 +0900 Subject: [PATCH] Prepare to release --- CHANGELOG.md | 4 +++- README.md | 2 +- sv-parser-error/Cargo.toml | 2 +- sv-parser-macros/Cargo.toml | 2 +- sv-parser-parser/Cargo.toml | 6 +++--- sv-parser-pp/Cargo.toml | 8 ++++---- sv-parser-syntaxtree/Cargo.toml | 4 ++-- sv-parser/Cargo.toml | 10 +++++----- 8 files changed, 20 insertions(+), 18 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4937c02..7c1b812 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Change Log -## [Unreleased](https://github.com/dalance/sv-parser/compare/v0.4.17...Unreleased) - ReleaseDate +## [Unreleased](https://github.com/dalance/sv-parser/compare/v0.4.18...Unreleased) - ReleaseDate + +## [v0.4.18](https://github.com/dalance/sv-parser/compare/v0.4.17...v0.4.18) - 2019-12-12 ## [v0.4.17](https://github.com/dalance/sv-parser/compare/v0.4.16...v0.4.17) - 2019-12-12 diff --git a/README.md b/README.md index 3b49a4e..6f974bc 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ SystemVerilog parser library fully complient with [IEEE 1800-2017](https://stand ```Cargo.toml [dependencies] -sv-parser = "0.4.17" +sv-parser = "0.4.18" ``` sv-parser provides [`parse_sv`](https://docs.rs/sv-parser/latest/sv_parser/fn.parse_sv.html) function which returns [`SyntaxTree`](https://docs.rs/sv-parser/latest/sv_parser/struct.SyntaxTree.html). diff --git a/sv-parser-error/Cargo.toml b/sv-parser-error/Cargo.toml index c447261..643fec3 100644 --- a/sv-parser-error/Cargo.toml +++ b/sv-parser-error/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sv-parser-error" -version = "0.4.17" +version = "0.4.18" authors = ["dalance@gmail.com"] repository = "https://github.com/dalance/sv-parser" keywords = ["parser", "verilog", "systemverilog"] diff --git a/sv-parser-macros/Cargo.toml b/sv-parser-macros/Cargo.toml index 21f58a8..cccebab 100644 --- a/sv-parser-macros/Cargo.toml +++ b/sv-parser-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sv-parser-macros" -version = "0.4.17" +version = "0.4.18" authors = ["dalance@gmail.com"] repository = "https://github.com/dalance/sv-parser" keywords = ["parser", "verilog", "systemverilog"] diff --git a/sv-parser-parser/Cargo.toml b/sv-parser-parser/Cargo.toml index 3598fb4..50e203b 100644 --- a/sv-parser-parser/Cargo.toml +++ b/sv-parser-parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sv-parser-parser" -version = "0.4.17" +version = "0.4.18" authors = ["dalance@gmail.com"] repository = "https://github.com/dalance/sv-parser" keywords = ["parser", "verilog", "systemverilog"] @@ -25,5 +25,5 @@ nom-packrat = "0.3.0" nom-recursive = {version = "0.1.1", features = ["tracer128"]} nom-tracable = "0.4.1" str-concat = "0.1.4" -sv-parser-macros = {version = "^0.4.17", path = "../sv-parser-macros"} -sv-parser-syntaxtree = {version = "^0.4.17", path = "../sv-parser-syntaxtree"} +sv-parser-macros = {version = "^0.4.18", path = "../sv-parser-macros"} +sv-parser-syntaxtree = {version = "^0.4.18", path = "../sv-parser-syntaxtree"} diff --git a/sv-parser-pp/Cargo.toml b/sv-parser-pp/Cargo.toml index 05d3457..5dfca68 100644 --- a/sv-parser-pp/Cargo.toml +++ b/sv-parser-pp/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sv-parser-pp" -version = "0.4.17" +version = "0.4.18" authors = ["dalance@gmail.com"] repository = "https://github.com/dalance/sv-parser" keywords = ["parser", "verilog", "systemverilog"] @@ -21,6 +21,6 @@ trace = ["sv-parser-parser/trace"] failure = "0.1.5" nom = "5.0.0" nom-greedyerror = "0.1.0" -sv-parser-error = {version = "^0.4.17", path = "../sv-parser-error"} -sv-parser-parser = {version = "^0.4.17", path = "../sv-parser-parser"} -sv-parser-syntaxtree = {version = "^0.4.17", path = "../sv-parser-syntaxtree"} +sv-parser-error = {version = "^0.4.18", path = "../sv-parser-error"} +sv-parser-parser = {version = "^0.4.18", path = "../sv-parser-parser"} +sv-parser-syntaxtree = {version = "^0.4.18", path = "../sv-parser-syntaxtree"} diff --git a/sv-parser-syntaxtree/Cargo.toml b/sv-parser-syntaxtree/Cargo.toml index 9b7726d..c3c6a21 100644 --- a/sv-parser-syntaxtree/Cargo.toml +++ b/sv-parser-syntaxtree/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sv-parser-syntaxtree" -version = "0.4.17" +version = "0.4.18" authors = ["dalance@gmail.com"] repository = "https://github.com/dalance/sv-parser" keywords = ["parser", "verilog", "systemverilog"] @@ -15,7 +15,7 @@ build = "build.rs" disable-tag = true [dependencies] -sv-parser-macros = {version = "^0.4.17", path = "../sv-parser-macros"} +sv-parser-macros = {version = "^0.4.18", path = "../sv-parser-macros"} [build-dependencies] regex = "1" diff --git a/sv-parser/Cargo.toml b/sv-parser/Cargo.toml index ed58cd9..9ca0600 100644 --- a/sv-parser/Cargo.toml +++ b/sv-parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sv-parser" -version = "0.4.17" +version = "0.4.18" authors = ["dalance@gmail.com"] repository = "https://github.com/dalance/sv-parser" keywords = ["parser", "verilog", "systemverilog"] @@ -25,10 +25,10 @@ trace = ["sv-parser-parser/trace"] [dependencies] nom = "5.0.0" nom-greedyerror = "0.1.0" -sv-parser-error = {version = "^0.4.17", path = "../sv-parser-error"} -sv-parser-parser = {version = "^0.4.17", path = "../sv-parser-parser"} -sv-parser-pp = {version = "^0.4.17", path = "../sv-parser-pp"} -sv-parser-syntaxtree = {version = "^0.4.17", path = "../sv-parser-syntaxtree"} +sv-parser-error = {version = "^0.4.18", path = "../sv-parser-error"} +sv-parser-parser = {version = "^0.4.18", path = "../sv-parser-parser"} +sv-parser-pp = {version = "^0.4.18", path = "../sv-parser-pp"} +sv-parser-syntaxtree = {version = "^0.4.18", path = "../sv-parser-syntaxtree"} [dev-dependencies] structopt = "0.3.2"