Prepare to v0.4.4 of sv-parser

This commit is contained in:
dalance 2019-11-22 20:03:59 +09:00
parent 42fb3882c9
commit 0ae50c97d6
3 changed files with 5 additions and 3 deletions

View File

@ -1,6 +1,8 @@
# Change Log # Change Log
## [Unreleased](https://github.com/dalance/sv-parser/compare/v0.4.3...Unreleased) - ReleaseDate ## [Unreleased](https://github.com/dalance/sv-parser/compare/v0.4.4...Unreleased) - ReleaseDate
## [v0.4.4](https://github.com/dalance/sv-parser/compare/v0.4.3...v0.4.4) - 2019-11-22
* [Fix] \`resetall wrongly clear define list * [Fix] \`resetall wrongly clear define list

View File

@ -14,7 +14,7 @@ SystemVerilog parser library fully complient with [IEEE 1800-2017](https://stand
```Cargo.toml ```Cargo.toml
[dependencies] [dependencies]
sv-parser = "0.4.3" sv-parser = "0.4.4"
``` ```
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). 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).

View File

@ -1,6 +1,6 @@
[package] [package]
name = "sv-parser" name = "sv-parser"
version = "0.4.3" version = "0.4.4"
authors = ["dalance@gmail.com"] authors = ["dalance@gmail.com"]
repository = "https://github.com/dalance/sv-parser" repository = "https://github.com/dalance/sv-parser"
keywords = ["parser", "verilog", "systemverilog"] keywords = ["parser", "verilog", "systemverilog"]