diff --git a/CHANGELOG.md b/CHANGELOG.md index 5514d59..076fd81 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Change Log -## [Unreleased](https://github.com/dalance/sv-parser/compare/v0.4.7...Unreleased) - ReleaseDate +## [Unreleased](https://github.com/dalance/sv-parser/compare/v0.4.8...Unreleased) - ReleaseDate + +## [v0.4.8](https://github.com/dalance/sv-parser/compare/v0.4.7...v0.4.8) - 2019-12-12 * [Fixed] allow recursive define until limit diff --git a/README.md b/README.md index 6169e64..c8f953b 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.7" +sv-parser = "0.4.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 6dc87be..a167f33 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.7" +version = "0.4.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 d29b7bc..6a9059b 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.7" +version = "0.4.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 3647d89..63af45a 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.7" +version = "0.4.8" authors = ["dalance@gmail.com"] repository = "https://github.com/dalance/sv-parser" keywords = ["parser", "verilog", "systemverilog"] diff --git a/sv-parser-pp/Cargo.toml b/sv-parser-pp/Cargo.toml index a3c9d50..c955794 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.7" +version = "0.4.8" authors = ["dalance@gmail.com"] repository = "https://github.com/dalance/sv-parser" keywords = ["parser", "verilog", "systemverilog"] diff --git a/sv-parser-syntaxtree/Cargo.toml b/sv-parser-syntaxtree/Cargo.toml index 9154693..c13b553 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.7" +version = "0.4.8" authors = ["dalance@gmail.com"] repository = "https://github.com/dalance/sv-parser" keywords = ["parser", "verilog", "systemverilog"] diff --git a/sv-parser/Cargo.toml b/sv-parser/Cargo.toml index 85d8b41..a0e70d1 100644 --- a/sv-parser/Cargo.toml +++ b/sv-parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sv-parser" -version = "0.4.7" +version = "0.4.8" authors = ["dalance@gmail.com"] repository = "https://github.com/dalance/sv-parser" keywords = ["parser", "verilog", "systemverilog"]