diff --git a/CHANGELOG.md b/CHANGELOG.md index 41e0707..a4d0b16 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Change Log -## [Unreleased](https://github.com/dalance/sv-parser/compare/v0.1.4...Unreleased) - ReleaseDate +## [Unreleased](https://github.com/dalance/sv-parser/compare/v0.2.0...Unreleased) - ReleaseDate + +## [v0.2.0](https://github.com/dalance/sv-parser/compare/v0.1.4...v0.2.0) - 2019-10-16 * [Added] parse error position * [Fixed] spacing rule aroung text_macro_identifier diff --git a/README.md b/README.md index a1e3fb3..393a93e 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ SystemVerilog parser library fully complient with [IEEE 1800-2017](https://stand ```Cargo.toml [dependencies] -sv-parser = "0.1.0" +sv-parser = "0.2.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-pp/Cargo.toml b/sv-parser-pp/Cargo.toml index 2cdd7ef..0591294 100644 --- a/sv-parser-pp/Cargo.toml +++ b/sv-parser-pp/Cargo.toml @@ -11,7 +11,8 @@ description = "Helper crate of sv-parser" edition = "2018" [package.metadata.release] -disable-tag = true +disable-push = true +disable-tag = true [features] default = [] diff --git a/sv-parser-syntaxtree/Cargo.toml b/sv-parser-syntaxtree/Cargo.toml index cd68484..b5d3d8f 100644 --- a/sv-parser-syntaxtree/Cargo.toml +++ b/sv-parser-syntaxtree/Cargo.toml @@ -12,7 +12,8 @@ edition = "2018" build = "build.rs" [package.metadata.release] -disable-tag = true +disable-push = true +disable-tag = true [dependencies] sv-parser-macros = {version = "^0.2.0", path = "../sv-parser-macros"} diff --git a/sv-parser/Cargo.toml b/sv-parser/Cargo.toml index 0cfd820..f097585 100644 --- a/sv-parser/Cargo.toml +++ b/sv-parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sv-parser" -version = "0.1.7" +version = "0.2.0" authors = ["dalance@gmail.com"] repository = "https://github.com/dalance/sv-parser" keywords = ["parser", "verilog", "systemverilog"]