From 30c34fa7eed9a1edeb08a296aafdcdded6afd6ae Mon Sep 17 00:00:00 2001 From: dalance Date: Fri, 28 Aug 2020 16:03:05 +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 b245bce..250d474 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Change Log -## [Unreleased](https://github.com/dalance/sv-parser/compare/v0.7.0...Unreleased) - ReleaseDate +## [Unreleased](https://github.com/dalance/sv-parser/compare/v0.8.0...Unreleased) - ReleaseDate + +## [v0.8.0](https://github.com/dalance/sv-parser/compare/v0.7.0...v0.8.0) - 2020-08-28 * [Fixed] 'Declaraton' typo [#18](https://github.com/dalance/sv-parser/issues/18) diff --git a/README.md b/README.md index a6cfb85..7df67de 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ SystemVerilog parser library fully compliant with [IEEE 1800-2017](https://stand ```Cargo.toml [dependencies] -sv-parser = "0.7.0" +sv-parser = "0.8.0" ``` 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 6393c89..0958dad 100644 --- a/sv-parser-error/Cargo.toml +++ b/sv-parser-error/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sv-parser-error" -version = "0.7.0" +version = "0.8.0" 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 1630318..7cb2766 100644 --- a/sv-parser-macros/Cargo.toml +++ b/sv-parser-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sv-parser-macros" -version = "0.7.0" +version = "0.8.0" 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 6f92b37..a9e45e2 100644 --- a/sv-parser-parser/Cargo.toml +++ b/sv-parser-parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sv-parser-parser" -version = "0.7.0" +version = "0.8.0" authors = ["dalance@gmail.com"] repository = "https://github.com/dalance/sv-parser" keywords = ["parser", "verilog", "systemverilog"] @@ -25,5 +25,5 @@ nom-packrat = "0.4" nom-recursive = {version = "0.2", features = ["tracer128"]} nom-tracable = "0.6" str-concat = "0.2" -sv-parser-macros = {version = "^0.7.0", path = "../sv-parser-macros"} -sv-parser-syntaxtree = {version = "^0.7.0", path = "../sv-parser-syntaxtree"} +sv-parser-macros = {version = "^0.8.0", path = "../sv-parser-macros"} +sv-parser-syntaxtree = {version = "^0.8.0", path = "../sv-parser-syntaxtree"} diff --git a/sv-parser-pp/Cargo.toml b/sv-parser-pp/Cargo.toml index 5fcd133..642d36a 100644 --- a/sv-parser-pp/Cargo.toml +++ b/sv-parser-pp/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sv-parser-pp" -version = "0.7.0" +version = "0.8.0" authors = ["dalance@gmail.com"] repository = "https://github.com/dalance/sv-parser" keywords = ["parser", "verilog", "systemverilog"] @@ -20,6 +20,6 @@ trace = ["sv-parser-parser/trace"] [dependencies] nom = "5" nom-greedyerror = "0.2" -sv-parser-error = {version = "^0.7.0", path = "../sv-parser-error"} -sv-parser-parser = {version = "^0.7.0", path = "../sv-parser-parser"} -sv-parser-syntaxtree = {version = "^0.7.0", path = "../sv-parser-syntaxtree"} +sv-parser-error = {version = "^0.8.0", path = "../sv-parser-error"} +sv-parser-parser = {version = "^0.8.0", path = "../sv-parser-parser"} +sv-parser-syntaxtree = {version = "^0.8.0", path = "../sv-parser-syntaxtree"} diff --git a/sv-parser-syntaxtree/Cargo.toml b/sv-parser-syntaxtree/Cargo.toml index 5306aed..0735e60 100644 --- a/sv-parser-syntaxtree/Cargo.toml +++ b/sv-parser-syntaxtree/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sv-parser-syntaxtree" -version = "0.7.0" +version = "0.8.0" 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.7.0", path = "../sv-parser-macros"} +sv-parser-macros = {version = "^0.8.0", path = "../sv-parser-macros"} [build-dependencies] regex = "1" diff --git a/sv-parser/Cargo.toml b/sv-parser/Cargo.toml index cffa65c..7d74829 100644 --- a/sv-parser/Cargo.toml +++ b/sv-parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sv-parser" -version = "0.7.0" +version = "0.8.0" 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" nom-greedyerror = "0.2" -sv-parser-error = {version = "^0.7.0", path = "../sv-parser-error"} -sv-parser-parser = {version = "^0.7.0", path = "../sv-parser-parser"} -sv-parser-pp = {version = "^0.7.0", path = "../sv-parser-pp"} -sv-parser-syntaxtree = {version = "^0.7.0", path = "../sv-parser-syntaxtree"} +sv-parser-error = {version = "^0.8.0", path = "../sv-parser-error"} +sv-parser-parser = {version = "^0.8.0", path = "../sv-parser-parser"} +sv-parser-pp = {version = "^0.8.0", path = "../sv-parser-pp"} +sv-parser-syntaxtree = {version = "^0.8.0", path = "../sv-parser-syntaxtree"} [dev-dependencies] structopt = "0.3.2"