Prepare to release

This commit is contained in:
dalance 2019-12-12 19:24:04 +09:00
parent 1e1a5834f1
commit 6e887e22c7
8 changed files with 20 additions and 18 deletions

View File

@ -1,6 +1,8 @@
# Change Log # Change Log
## [Unreleased](https://github.com/dalance/sv-parser/compare/v0.4.18...Unreleased) - ReleaseDate ## [Unreleased](https://github.com/dalance/sv-parser/compare/v0.4.19...Unreleased) - ReleaseDate
## [v0.4.19](https://github.com/dalance/sv-parser/compare/v0.4.18...v0.4.19) - 2019-12-12
* [Added] include line check * [Added] include line check
* [Fixed] resetall directive in design element * [Fixed] resetall directive in design element

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.18" sv-parser = "0.4.19"
``` ```
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-error" name = "sv-parser-error"
version = "0.4.18" version = "0.4.19"
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"]

View File

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

View File

@ -1,6 +1,6 @@
[package] [package]
name = "sv-parser-parser" name = "sv-parser-parser"
version = "0.4.18" version = "0.4.19"
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"]
@ -25,5 +25,5 @@ nom-packrat = "0.3.0"
nom-recursive = {version = "0.1.1", features = ["tracer128"]} nom-recursive = {version = "0.1.1", features = ["tracer128"]}
nom-tracable = "0.4.1" nom-tracable = "0.4.1"
str-concat = "0.1.4" str-concat = "0.1.4"
sv-parser-macros = {version = "^0.4.18", path = "../sv-parser-macros"} sv-parser-macros = {version = "^0.4.19", path = "../sv-parser-macros"}
sv-parser-syntaxtree = {version = "^0.4.18", path = "../sv-parser-syntaxtree"} sv-parser-syntaxtree = {version = "^0.4.19", path = "../sv-parser-syntaxtree"}

View File

@ -1,6 +1,6 @@
[package] [package]
name = "sv-parser-pp" name = "sv-parser-pp"
version = "0.4.18" version = "0.4.19"
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"]
@ -21,6 +21,6 @@ trace = ["sv-parser-parser/trace"]
failure = "0.1.5" failure = "0.1.5"
nom = "5.0.0" nom = "5.0.0"
nom-greedyerror = "0.1.0" nom-greedyerror = "0.1.0"
sv-parser-error = {version = "^0.4.18", path = "../sv-parser-error"} sv-parser-error = {version = "^0.4.19", path = "../sv-parser-error"}
sv-parser-parser = {version = "^0.4.18", path = "../sv-parser-parser"} sv-parser-parser = {version = "^0.4.19", path = "../sv-parser-parser"}
sv-parser-syntaxtree = {version = "^0.4.18", path = "../sv-parser-syntaxtree"} sv-parser-syntaxtree = {version = "^0.4.19", path = "../sv-parser-syntaxtree"}

View File

@ -1,6 +1,6 @@
[package] [package]
name = "sv-parser-syntaxtree" name = "sv-parser-syntaxtree"
version = "0.4.18" version = "0.4.19"
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"]
@ -15,7 +15,7 @@ build = "build.rs"
disable-tag = true disable-tag = true
[dependencies] [dependencies]
sv-parser-macros = {version = "^0.4.18", path = "../sv-parser-macros"} sv-parser-macros = {version = "^0.4.19", path = "../sv-parser-macros"}
[build-dependencies] [build-dependencies]
regex = "1" regex = "1"

View File

@ -1,6 +1,6 @@
[package] [package]
name = "sv-parser" name = "sv-parser"
version = "0.4.18" version = "0.4.19"
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"]
@ -25,10 +25,10 @@ trace = ["sv-parser-parser/trace"]
[dependencies] [dependencies]
nom = "5.0.0" nom = "5.0.0"
nom-greedyerror = "0.1.0" nom-greedyerror = "0.1.0"
sv-parser-error = {version = "^0.4.18", path = "../sv-parser-error"} sv-parser-error = {version = "^0.4.19", path = "../sv-parser-error"}
sv-parser-parser = {version = "^0.4.18", path = "../sv-parser-parser"} sv-parser-parser = {version = "^0.4.19", path = "../sv-parser-parser"}
sv-parser-pp = {version = "^0.4.18", path = "../sv-parser-pp"} sv-parser-pp = {version = "^0.4.19", path = "../sv-parser-pp"}
sv-parser-syntaxtree = {version = "^0.4.18", path = "../sv-parser-syntaxtree"} sv-parser-syntaxtree = {version = "^0.4.19", path = "../sv-parser-syntaxtree"}
[dev-dependencies] [dev-dependencies]
structopt = "0.3.2" structopt = "0.3.2"