Prepare to release

This commit is contained in:
dalance 2020-08-28 19:58:16 +09:00
parent 9c935af397
commit 727cd3f067
8 changed files with 20 additions and 18 deletions

View File

@ -1,6 +1,8 @@
# Change Log
## [Unreleased](https://github.com/dalance/sv-parser/compare/v0.8.1...Unreleased) - ReleaseDate
## [Unreleased](https://github.com/dalance/sv-parser/compare/v0.8.2...Unreleased) - ReleaseDate
## [v0.8.2](https://github.com/dalance/sv-parser/compare/v0.8.1...v0.8.2) - 2020-08-28
* [Fixed] empty ifdef issue [#10](https://github.com/dalance/sv-parser/issues/10)

View File

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

View File

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

View File

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

View File

@ -1,6 +1,6 @@
[package]
name = "sv-parser-parser"
version = "0.8.1"
version = "0.8.2"
authors = ["dalance@gmail.com"]
repository = "https://github.com/dalance/sv-parser"
keywords = ["parser", "verilog", "systemverilog"]
@ -25,5 +25,5 @@ nom-packrat = "0.4"
nom-recursive = {version = "0.2", features = ["tracer128"]}
nom-tracable = "0.6"
str-concat = "0.2"
sv-parser-macros = {version = "^0.8.1", path = "../sv-parser-macros"}
sv-parser-syntaxtree = {version = "^0.8.1", path = "../sv-parser-syntaxtree"}
sv-parser-macros = {version = "^0.8.2", path = "../sv-parser-macros"}
sv-parser-syntaxtree = {version = "^0.8.2", path = "../sv-parser-syntaxtree"}

View File

@ -1,6 +1,6 @@
[package]
name = "sv-parser-pp"
version = "0.8.1"
version = "0.8.2"
authors = ["dalance@gmail.com"]
repository = "https://github.com/dalance/sv-parser"
keywords = ["parser", "verilog", "systemverilog"]
@ -20,6 +20,6 @@ trace = ["sv-parser-parser/trace"]
[dependencies]
nom = "5"
nom-greedyerror = "0.2"
sv-parser-error = {version = "^0.8.1", path = "../sv-parser-error"}
sv-parser-parser = {version = "^0.8.1", path = "../sv-parser-parser"}
sv-parser-syntaxtree = {version = "^0.8.1", path = "../sv-parser-syntaxtree"}
sv-parser-error = {version = "^0.8.2", path = "../sv-parser-error"}
sv-parser-parser = {version = "^0.8.2", path = "../sv-parser-parser"}
sv-parser-syntaxtree = {version = "^0.8.2", path = "../sv-parser-syntaxtree"}

View File

@ -1,6 +1,6 @@
[package]
name = "sv-parser-syntaxtree"
version = "0.8.1"
version = "0.8.2"
authors = ["dalance@gmail.com"]
repository = "https://github.com/dalance/sv-parser"
keywords = ["parser", "verilog", "systemverilog"]
@ -15,7 +15,7 @@ build = "build.rs"
disable-tag = true
[dependencies]
sv-parser-macros = {version = "^0.8.1", path = "../sv-parser-macros"}
sv-parser-macros = {version = "^0.8.2", path = "../sv-parser-macros"}
[build-dependencies]
regex = "1"

View File

@ -1,6 +1,6 @@
[package]
name = "sv-parser"
version = "0.8.1"
version = "0.8.2"
authors = ["dalance@gmail.com"]
repository = "https://github.com/dalance/sv-parser"
keywords = ["parser", "verilog", "systemverilog"]
@ -25,10 +25,10 @@ trace = ["sv-parser-parser/trace"]
[dependencies]
nom = "5"
nom-greedyerror = "0.2"
sv-parser-error = {version = "^0.8.1", path = "../sv-parser-error"}
sv-parser-parser = {version = "^0.8.1", path = "../sv-parser-parser"}
sv-parser-pp = {version = "^0.8.1", path = "../sv-parser-pp"}
sv-parser-syntaxtree = {version = "^0.8.1", path = "../sv-parser-syntaxtree"}
sv-parser-error = {version = "^0.8.2", path = "../sv-parser-error"}
sv-parser-parser = {version = "^0.8.2", path = "../sv-parser-parser"}
sv-parser-pp = {version = "^0.8.2", path = "../sv-parser-pp"}
sv-parser-syntaxtree = {version = "^0.8.2", path = "../sv-parser-syntaxtree"}
[dev-dependencies]
structopt = "0.3.2"