Prepare to v0.2.1 of sv-parser

This commit is contained in:
dalance 2019-10-28 11:20:02 +09:00
parent ca022e7f89
commit 5303d8e763
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.2.0...Unreleased) - ReleaseDate ## [Unreleased](https://github.com/dalance/sv-parser/compare/v0.2.1...Unreleased) - ReleaseDate
## [v0.2.1](https://github.com/dalance/sv-parser/compare/v0.2.0...v0.2.1) - 2019-10-28
* [Added] get_origin to SyntaxTree * [Added] get_origin to SyntaxTree
* [Added] re-export Error/ErrorKind * [Added] re-export Error/ErrorKind

View File

@ -9,7 +9,7 @@ SystemVerilog parser library fully complient with [IEEE 1800-2017](https://stand
```Cargo.toml ```Cargo.toml
[dependencies] [dependencies]
sv-parser = "0.2.0" sv-parser = "0.2.1"
``` ```
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.2.0" version = "0.2.1"
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"]