Prepare to v{{version}} of {{crate_name}}
This commit is contained in:
parent
0edcb6be02
commit
ff8b5693cf
@ -1,6 +1,8 @@
|
||||
# Change Log
|
||||
|
||||
## [Unreleased](https://github.com/dalance/sv-parser/compare/v0.4.13...Unreleased) - ReleaseDate
|
||||
## [Unreleased](https://github.com/dalance/sv-parser/compare/v0.4.14...Unreleased) - ReleaseDate
|
||||
|
||||
## [v0.4.14](https://github.com/dalance/sv-parser/compare/v0.4.13...v0.4.14) - 2019-12-12
|
||||
|
||||
## [v0.4.13](https://github.com/dalance/sv-parser/compare/v0.4.12...v0.4.13) - 2019-12-12
|
||||
|
||||
|
@ -14,7 +14,7 @@ SystemVerilog parser library fully complient with [IEEE 1800-2017](https://stand
|
||||
|
||||
```Cargo.toml
|
||||
[dependencies]
|
||||
sv-parser = "0.4.13"
|
||||
sv-parser = "0.4.14"
|
||||
```
|
||||
|
||||
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]
|
||||
name = "sv-parser-error"
|
||||
version = "0.4.13"
|
||||
version = "0.4.14"
|
||||
authors = ["dalance@gmail.com"]
|
||||
repository = "https://github.com/dalance/sv-parser"
|
||||
keywords = ["parser", "verilog", "systemverilog"]
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "sv-parser-macros"
|
||||
version = "0.4.13"
|
||||
version = "0.4.14"
|
||||
authors = ["dalance@gmail.com"]
|
||||
repository = "https://github.com/dalance/sv-parser"
|
||||
keywords = ["parser", "verilog", "systemverilog"]
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "sv-parser-parser"
|
||||
version = "0.4.13"
|
||||
version = "0.4.14"
|
||||
authors = ["dalance@gmail.com"]
|
||||
repository = "https://github.com/dalance/sv-parser"
|
||||
keywords = ["parser", "verilog", "systemverilog"]
|
||||
@ -22,5 +22,5 @@ nom-packrat = "0.3.0"
|
||||
nom-recursive = {version = "0.1.1", features = ["tracer128"]}
|
||||
nom-tracable = "0.4.1"
|
||||
str-concat = "0.1.4"
|
||||
sv-parser-macros = {version = "^0.4.13", path = "../sv-parser-macros"}
|
||||
sv-parser-syntaxtree = {version = "^0.4.13", path = "../sv-parser-syntaxtree"}
|
||||
sv-parser-macros = {version = "^0.4.14", path = "../sv-parser-macros"}
|
||||
sv-parser-syntaxtree = {version = "^0.4.14", path = "../sv-parser-syntaxtree"}
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "sv-parser-pp"
|
||||
version = "0.4.13"
|
||||
version = "0.4.14"
|
||||
authors = ["dalance@gmail.com"]
|
||||
repository = "https://github.com/dalance/sv-parser"
|
||||
keywords = ["parser", "verilog", "systemverilog"]
|
||||
@ -18,6 +18,6 @@ trace = ["sv-parser-parser/trace"]
|
||||
failure = "0.1.5"
|
||||
nom = "5.0.0"
|
||||
nom-greedyerror = "0.1.0"
|
||||
sv-parser-error = {version = "^0.4.13", path = "../sv-parser-error"}
|
||||
sv-parser-parser = {version = "^0.4.13", path = "../sv-parser-parser"}
|
||||
sv-parser-syntaxtree = {version = "^0.4.13", path = "../sv-parser-syntaxtree"}
|
||||
sv-parser-error = {version = "^0.4.14", path = "../sv-parser-error"}
|
||||
sv-parser-parser = {version = "^0.4.14", path = "../sv-parser-parser"}
|
||||
sv-parser-syntaxtree = {version = "^0.4.14", path = "../sv-parser-syntaxtree"}
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "sv-parser-syntaxtree"
|
||||
version = "0.4.13"
|
||||
version = "0.4.14"
|
||||
authors = ["dalance@gmail.com"]
|
||||
repository = "https://github.com/dalance/sv-parser"
|
||||
keywords = ["parser", "verilog", "systemverilog"]
|
||||
@ -12,7 +12,7 @@ edition = "2018"
|
||||
build = "build.rs"
|
||||
|
||||
[dependencies]
|
||||
sv-parser-macros = {version = "^0.4.13", path = "../sv-parser-macros"}
|
||||
sv-parser-macros = {version = "^0.4.14", path = "../sv-parser-macros"}
|
||||
|
||||
[build-dependencies]
|
||||
regex = "1"
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "sv-parser"
|
||||
version = "0.4.13"
|
||||
version = "0.4.14"
|
||||
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.0.0"
|
||||
nom-greedyerror = "0.1.0"
|
||||
sv-parser-error = {version = "^0.4.13", path = "../sv-parser-error"}
|
||||
sv-parser-parser = {version = "^0.4.13", path = "../sv-parser-parser"}
|
||||
sv-parser-pp = {version = "^0.4.13", path = "../sv-parser-pp"}
|
||||
sv-parser-syntaxtree = {version = "^0.4.13", path = "../sv-parser-syntaxtree"}
|
||||
sv-parser-error = {version = "^0.4.14", path = "../sv-parser-error"}
|
||||
sv-parser-parser = {version = "^0.4.14", path = "../sv-parser-parser"}
|
||||
sv-parser-pp = {version = "^0.4.14", path = "../sv-parser-pp"}
|
||||
sv-parser-syntaxtree = {version = "^0.4.14", path = "../sv-parser-syntaxtree"}
|
||||
|
||||
[dev-dependencies]
|
||||
structopt = "0.3.2"
|
||||
|
Loading…
x
Reference in New Issue
Block a user