diff --git a/CHANGELOG.md b/CHANGELOG.md index 0021b8e..407372c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Change Log -## [Unreleased](https://github.com/dalance/sv-parser/compare/v0.10.7...Unreleased) - ReleaseDate +## [Unreleased](https://github.com/dalance/sv-parser/compare/v0.10.8...Unreleased) - ReleaseDate + +## [v0.10.8](https://github.com/dalance/sv-parser/compare/v0.10.7...v0.10.8) - 2021-01-29 * [Fixed] include with comment error diff --git a/README.md b/README.md index 53cfb43..0bbd70a 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.10.7" +sv-parser = "0.10.8" ``` 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 d7fa148..fe13b36 100644 --- a/sv-parser-error/Cargo.toml +++ b/sv-parser-error/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sv-parser-error" -version = "0.10.7" +version = "0.10.8" 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 802c4d4..c30ba0e 100644 --- a/sv-parser-macros/Cargo.toml +++ b/sv-parser-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sv-parser-macros" -version = "0.10.7" +version = "0.10.8" 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 6eed80a..9c5eb4b 100644 --- a/sv-parser-parser/Cargo.toml +++ b/sv-parser-parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sv-parser-parser" -version = "0.10.7" +version = "0.10.8" authors = ["dalance@gmail.com"] repository = "https://github.com/dalance/sv-parser" keywords = ["parser", "verilog", "systemverilog"] @@ -25,5 +25,5 @@ nom-packrat = "0.5" nom-recursive = {version = "0.3", features = ["tracer128"]} nom-tracable = "0.7" str-concat = "0.2" -sv-parser-macros = {version = "^0.10.7", path = "../sv-parser-macros"} -sv-parser-syntaxtree = {version = "^0.10.7", path = "../sv-parser-syntaxtree"} +sv-parser-macros = {version = "^0.10.8", path = "../sv-parser-macros"} +sv-parser-syntaxtree = {version = "^0.10.8", path = "../sv-parser-syntaxtree"} diff --git a/sv-parser-pp/Cargo.toml b/sv-parser-pp/Cargo.toml index 8c3d506..81d7bc8 100644 --- a/sv-parser-pp/Cargo.toml +++ b/sv-parser-pp/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sv-parser-pp" -version = "0.10.7" +version = "0.10.8" 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 = "6" nom-greedyerror = "0.3" -sv-parser-error = {version = "^0.10.7", path = "../sv-parser-error"} -sv-parser-parser = {version = "^0.10.7", path = "../sv-parser-parser"} -sv-parser-syntaxtree = {version = "^0.10.7", path = "../sv-parser-syntaxtree"} +sv-parser-error = {version = "^0.10.8", path = "../sv-parser-error"} +sv-parser-parser = {version = "^0.10.8", path = "../sv-parser-parser"} +sv-parser-syntaxtree = {version = "^0.10.8", path = "../sv-parser-syntaxtree"} diff --git a/sv-parser-syntaxtree/Cargo.toml b/sv-parser-syntaxtree/Cargo.toml index 7885d6f..b426f08 100644 --- a/sv-parser-syntaxtree/Cargo.toml +++ b/sv-parser-syntaxtree/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sv-parser-syntaxtree" -version = "0.10.7" +version = "0.10.8" 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.10.7", path = "../sv-parser-macros"} +sv-parser-macros = {version = "^0.10.8", path = "../sv-parser-macros"} [build-dependencies] regex = "1" diff --git a/sv-parser/Cargo.toml b/sv-parser/Cargo.toml index f985dda..86d2669 100644 --- a/sv-parser/Cargo.toml +++ b/sv-parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sv-parser" -version = "0.10.7" +version = "0.10.8" 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 = "6" nom-greedyerror = "0.3" -sv-parser-error = {version = "^0.10.7", path = "../sv-parser-error"} -sv-parser-parser = {version = "^0.10.7", path = "../sv-parser-parser"} -sv-parser-pp = {version = "^0.10.7", path = "../sv-parser-pp"} -sv-parser-syntaxtree = {version = "^0.10.7", path = "../sv-parser-syntaxtree"} +sv-parser-error = {version = "^0.10.8", path = "../sv-parser-error"} +sv-parser-parser = {version = "^0.10.8", path = "../sv-parser-parser"} +sv-parser-pp = {version = "^0.10.8", path = "../sv-parser-pp"} +sv-parser-syntaxtree = {version = "^0.10.8", path = "../sv-parser-syntaxtree"} [dev-dependencies] structopt = "0.3.2"