Prepare to release
This commit is contained in:
parent
e82f4ee236
commit
f5b3f2b090
@ -1,6 +1,8 @@
|
||||
# Change Log
|
||||
|
||||
## [Unreleased](https://github.com/dalance/sv-parser/compare/v0.13.2...Unreleased) - ReleaseDate
|
||||
## [Unreleased](https://github.com/dalance/sv-parser/compare/v0.13.3...Unreleased) - ReleaseDate
|
||||
|
||||
## [v0.13.3](https://github.com/dalance/sv-parser/compare/v0.13.2...v0.13.3) - 2023-11-29
|
||||
|
||||
* [Fixed] Fix chained method [#93](https://github.com/dalance/sv-parser/pull/93)
|
||||
|
||||
|
@ -16,7 +16,7 @@ SystemVerilog parser library fully compliant with [IEEE 1800-2017](https://stand
|
||||
|
||||
```Cargo.toml
|
||||
[dependencies]
|
||||
sv-parser = "0.13.2"
|
||||
sv-parser = "0.13.3"
|
||||
```
|
||||
|
||||
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.13.2"
|
||||
version = "0.13.3"
|
||||
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.13.2"
|
||||
version = "0.13.3"
|
||||
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.13.2"
|
||||
version = "0.13.3"
|
||||
authors = ["dalance@gmail.com"]
|
||||
repository = "https://github.com/dalance/sv-parser"
|
||||
keywords = ["parser", "verilog", "systemverilog"]
|
||||
@ -28,5 +28,5 @@ nom-packrat = "0.7"
|
||||
nom-recursive = {version = "0.5", features = ["tracer128"]}
|
||||
nom-tracable = "0.9"
|
||||
str-concat = "0.2"
|
||||
sv-parser-macros = {version = "^0.13.2", path = "../sv-parser-macros"}
|
||||
sv-parser-syntaxtree = {version = "^0.13.2", path = "../sv-parser-syntaxtree"}
|
||||
sv-parser-macros = {version = "^0.13.3", path = "../sv-parser-macros"}
|
||||
sv-parser-syntaxtree = {version = "^0.13.3", path = "../sv-parser-syntaxtree"}
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "sv-parser-pp"
|
||||
version = "0.13.2"
|
||||
version = "0.13.3"
|
||||
authors = ["dalance@gmail.com"]
|
||||
repository = "https://github.com/dalance/sv-parser"
|
||||
keywords = ["parser", "verilog", "systemverilog"]
|
||||
@ -23,6 +23,6 @@ trace = ["sv-parser-parser/trace"]
|
||||
[dependencies]
|
||||
nom = "7"
|
||||
nom-greedyerror = "0.5"
|
||||
sv-parser-error = {version = "^0.13.2", path = "../sv-parser-error"}
|
||||
sv-parser-parser = {version = "^0.13.2", path = "../sv-parser-parser"}
|
||||
sv-parser-syntaxtree = {version = "^0.13.2", path = "../sv-parser-syntaxtree"}
|
||||
sv-parser-error = {version = "^0.13.3", path = "../sv-parser-error"}
|
||||
sv-parser-parser = {version = "^0.13.3", path = "../sv-parser-parser"}
|
||||
sv-parser-syntaxtree = {version = "^0.13.3", path = "../sv-parser-syntaxtree"}
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "sv-parser-syntaxtree"
|
||||
version = "0.13.2"
|
||||
version = "0.13.3"
|
||||
authors = ["dalance@gmail.com"]
|
||||
repository = "https://github.com/dalance/sv-parser"
|
||||
keywords = ["parser", "verilog", "systemverilog"]
|
||||
@ -18,7 +18,7 @@ doctest = false
|
||||
tag = false
|
||||
|
||||
[dependencies]
|
||||
sv-parser-macros = {version = "^0.13.2", path = "../sv-parser-macros"}
|
||||
sv-parser-macros = {version = "^0.13.3", path = "../sv-parser-macros"}
|
||||
|
||||
[build-dependencies]
|
||||
regex = "1"
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "sv-parser"
|
||||
version = "0.13.2"
|
||||
version = "0.13.3"
|
||||
authors = ["dalance@gmail.com"]
|
||||
repository = "https://github.com/dalance/sv-parser"
|
||||
keywords = ["parser", "verilog", "systemverilog"]
|
||||
@ -28,10 +28,10 @@ trace = ["sv-parser-parser/trace"]
|
||||
[dependencies]
|
||||
nom = "7"
|
||||
nom-greedyerror = "0.5"
|
||||
sv-parser-error = {version = "^0.13.2", path = "../sv-parser-error"}
|
||||
sv-parser-parser = {version = "^0.13.2", path = "../sv-parser-parser"}
|
||||
sv-parser-pp = {version = "^0.13.2", path = "../sv-parser-pp"}
|
||||
sv-parser-syntaxtree = {version = "^0.13.2", path = "../sv-parser-syntaxtree"}
|
||||
sv-parser-error = {version = "^0.13.3", path = "../sv-parser-error"}
|
||||
sv-parser-parser = {version = "^0.13.3", path = "../sv-parser-parser"}
|
||||
sv-parser-pp = {version = "^0.13.3", path = "../sv-parser-pp"}
|
||||
sv-parser-syntaxtree = {version = "^0.13.3", path = "../sv-parser-syntaxtree"}
|
||||
|
||||
[dev-dependencies]
|
||||
structopt = "0.3.2"
|
||||
|
Loading…
x
Reference in New Issue
Block a user