From 77ebb2b45cd4af67a7304cfbdc0f240c7309ea72 Mon Sep 17 00:00:00 2001 From: dalance Date: Mon, 2 Dec 2019 11:53:56 +0900 Subject: [PATCH] Prepare to v0.4.6 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 e8491d6..e5b2c3e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Change Log -## [Unreleased](https://github.com/dalance/sv-parser/compare/v0.4.5...Unreleased) - ReleaseDate +## [Unreleased](https://github.com/dalance/sv-parser/compare/v0.4.6...Unreleased) - ReleaseDate + +## [v0.4.6](https://github.com/dalance/sv-parser/compare/v0.4.5...v0.4.6) - 2019-12-02 * [Fix] constant_bit_select * [Fix] wrong linebreak at define macro usage diff --git a/README.md b/README.md index d0fd6fb..8f08f3b 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.5" +sv-parser = "0.4.6" ``` 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 13588dc..ef7bb4a 100644 --- a/sv-parser/Cargo.toml +++ b/sv-parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sv-parser" -version = "0.4.5" +version = "0.4.6" authors = ["dalance@gmail.com"] repository = "https://github.com/dalance/sv-parser" keywords = ["parser", "verilog", "systemverilog"]