Prepare to v0.2.0 of sv-parser

This commit is contained in:
dalance 2019-10-16 17:22:56 +09:00
parent e15846c162
commit ad53187661
5 changed files with 9 additions and 5 deletions

View File

@ -1,6 +1,8 @@
# Change Log # 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 * [Added] parse error position
* [Fixed] spacing rule aroung text_macro_identifier * [Fixed] spacing rule aroung text_macro_identifier

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.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). 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

@ -11,6 +11,7 @@ description = "Helper crate of sv-parser"
edition = "2018" edition = "2018"
[package.metadata.release] [package.metadata.release]
disable-push = true
disable-tag = true disable-tag = true
[features] [features]

View File

@ -12,6 +12,7 @@ edition = "2018"
build = "build.rs" build = "build.rs"
[package.metadata.release] [package.metadata.release]
disable-push = true
disable-tag = true disable-tag = true
[dependencies] [dependencies]

View File

@ -1,6 +1,6 @@
[package] [package]
name = "sv-parser" name = "sv-parser"
version = "0.1.7" version = "0.2.0"
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"]