Prepare to release
This commit is contained in:
parent
8fdd33191c
commit
a94263f257
@ -1,6 +1,8 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
## [Unreleased](https://github.com/dalance/sv-parser/compare/v0.6.5...Unreleased) - ReleaseDate
|
## [Unreleased](https://github.com/dalance/sv-parser/compare/v0.7.0...Unreleased) - ReleaseDate
|
||||||
|
|
||||||
|
## [v0.7.0](https://github.com/dalance/sv-parser/compare/v0.6.5...v0.7.0) - 2020-04-10
|
||||||
|
|
||||||
## [v0.6.5](https://github.com/dalance/sv-parser/compare/v0.6.4...v0.6.5) - 2020-04-03
|
## [v0.6.5](https://github.com/dalance/sv-parser/compare/v0.6.4...v0.6.5) - 2020-04-03
|
||||||
|
|
||||||
|
@ -14,7 +14,7 @@ SystemVerilog parser library fully complient with [IEEE 1800-2017](https://stand
|
|||||||
|
|
||||||
```Cargo.toml
|
```Cargo.toml
|
||||||
[dependencies]
|
[dependencies]
|
||||||
sv-parser = "0.6.5"
|
sv-parser = "0.7.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).
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "sv-parser-error"
|
name = "sv-parser-error"
|
||||||
version = "0.6.5"
|
version = "0.7.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"]
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "sv-parser-macros"
|
name = "sv-parser-macros"
|
||||||
version = "0.6.5"
|
version = "0.7.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"]
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "sv-parser-parser"
|
name = "sv-parser-parser"
|
||||||
version = "0.6.5"
|
version = "0.7.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"]
|
||||||
@ -25,5 +25,5 @@ nom-packrat = "0.4"
|
|||||||
nom-recursive = {version = "0.2", features = ["tracer128"]}
|
nom-recursive = {version = "0.2", features = ["tracer128"]}
|
||||||
nom-tracable = "0.5"
|
nom-tracable = "0.5"
|
||||||
str-concat = "0.2"
|
str-concat = "0.2"
|
||||||
sv-parser-macros = {version = "^0.6.5", path = "../sv-parser-macros"}
|
sv-parser-macros = {version = "^0.7.0", path = "../sv-parser-macros"}
|
||||||
sv-parser-syntaxtree = {version = "^0.6.5", path = "../sv-parser-syntaxtree"}
|
sv-parser-syntaxtree = {version = "^0.7.0", path = "../sv-parser-syntaxtree"}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "sv-parser-pp"
|
name = "sv-parser-pp"
|
||||||
version = "0.6.5"
|
version = "0.7.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"]
|
||||||
@ -20,6 +20,6 @@ trace = ["sv-parser-parser/trace"]
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
nom = "5"
|
nom = "5"
|
||||||
nom-greedyerror = "0.2"
|
nom-greedyerror = "0.2"
|
||||||
sv-parser-error = {version = "^0.6.5", path = "../sv-parser-error"}
|
sv-parser-error = {version = "^0.7.0", path = "../sv-parser-error"}
|
||||||
sv-parser-parser = {version = "^0.6.5", path = "../sv-parser-parser"}
|
sv-parser-parser = {version = "^0.7.0", path = "../sv-parser-parser"}
|
||||||
sv-parser-syntaxtree = {version = "^0.6.5", path = "../sv-parser-syntaxtree"}
|
sv-parser-syntaxtree = {version = "^0.7.0", path = "../sv-parser-syntaxtree"}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "sv-parser-syntaxtree"
|
name = "sv-parser-syntaxtree"
|
||||||
version = "0.6.5"
|
version = "0.7.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"]
|
||||||
@ -15,7 +15,7 @@ build = "build.rs"
|
|||||||
disable-tag = true
|
disable-tag = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
sv-parser-macros = {version = "^0.6.5", path = "../sv-parser-macros"}
|
sv-parser-macros = {version = "^0.7.0", path = "../sv-parser-macros"}
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
regex = "1"
|
regex = "1"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "sv-parser"
|
name = "sv-parser"
|
||||||
version = "0.6.5"
|
version = "0.7.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"]
|
||||||
@ -25,10 +25,10 @@ trace = ["sv-parser-parser/trace"]
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
nom = "5"
|
nom = "5"
|
||||||
nom-greedyerror = "0.2"
|
nom-greedyerror = "0.2"
|
||||||
sv-parser-error = {version = "^0.6.5", path = "../sv-parser-error"}
|
sv-parser-error = {version = "^0.7.0", path = "../sv-parser-error"}
|
||||||
sv-parser-parser = {version = "^0.6.5", path = "../sv-parser-parser"}
|
sv-parser-parser = {version = "^0.7.0", path = "../sv-parser-parser"}
|
||||||
sv-parser-pp = {version = "^0.6.5", path = "../sv-parser-pp"}
|
sv-parser-pp = {version = "^0.7.0", path = "../sv-parser-pp"}
|
||||||
sv-parser-syntaxtree = {version = "^0.6.5", path = "../sv-parser-syntaxtree"}
|
sv-parser-syntaxtree = {version = "^0.7.0", path = "../sv-parser-syntaxtree"}
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
structopt = "0.3.2"
|
structopt = "0.3.2"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user