From 574438851d087f32c49e95f9dfdc8eb786166d7a Mon Sep 17 00:00:00 2001 From: dalance Date: Tue, 29 Oct 2019 17:26:39 +0900 Subject: [PATCH] Prepare to v0.3.2 of sv-parser --- CHANGELOG.md | 4 +++- README.md | 2 +- sv-parser/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 012a886..2d9215a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Change Log -## [Unreleased](https://github.com/dalance/sv-parser/compare/v0.2.1...Unreleased) - ReleaseDate +## [Unreleased](https://github.com/dalance/sv-parser/compare/v0.3.2...Unreleased) - ReleaseDate + +## [v0.3.2](https://github.com/dalance/sv-parser/compare/v0.2.1...v0.3.2) - 2019-10-29 * [Changed] SyntaxTree::get_str can take &RefNode * [Added] unwrap_locate macro diff --git a/README.md b/README.md index d6e72dd..133e330 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.2.1" +sv-parser = "0.3.2" ``` 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/Cargo.toml b/sv-parser/Cargo.toml index e746dc2..8a373ee 100644 --- a/sv-parser/Cargo.toml +++ b/sv-parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sv-parser" -version = "0.3.1" +version = "0.3.2" authors = ["dalance@gmail.com"] repository = "https://github.com/dalance/sv-parser" keywords = ["parser", "verilog", "systemverilog"]