File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# Change Log
22
3- ## [ Unreleased] ( https://github.com/dalance/sv-parser/compare/v0.12.0...Unreleased ) - ReleaseDate
3+ ## [ Unreleased] ( https://github.com/dalance/sv-parser/compare/v0.12.1...Unreleased ) - ReleaseDate
4+
5+ ## [ v0.12.1] ( https://github.com/dalance/sv-parser/compare/v0.12.0...v0.12.1 ) - 2022-08-01
46
57* [ Fixed] Bugfixes for preprocess(), plus organise and extend tests. [ #61 ] ( https://github.com/dalance/sv-parser/pull/61 )
68
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ SystemVerilog parser library fully compliant with [IEEE 1800-2017](https://stand
1616
1717``` Cargo.toml
1818[dependencies ]
19- sv-parser = " 0.12.0 "
19+ sv-parser = " 0.12.1 "
2020```
2121
2222sv-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 ) .
Original file line number Diff line number Diff line change 11[package ]
22name = " sv-parser-error"
3- version = " 0.12.0 "
3+ version = " 0.12.1 "
44authors = [" dalance@gmail.com" ]
55repository = " https://github.com/dalance/sv-parser"
66keywords = [" parser" , " verilog" , " systemverilog" ]
Original file line number Diff line number Diff line change 11[package ]
22name = " sv-parser-macros"
3- version = " 0.12.0 "
3+ version = " 0.12.1 "
44authors = [" dalance@gmail.com" ]
55repository = " https://github.com/dalance/sv-parser"
66keywords = [" parser" , " verilog" , " systemverilog" ]
Original file line number Diff line number Diff line change 11[package ]
22name = " sv-parser-parser"
3- version = " 0.12.0 "
3+ version = " 0.12.1 "
44authors = [" dalance@gmail.com" ]
55repository = " https://github.com/dalance/sv-parser"
66keywords = [" parser" , " verilog" , " systemverilog" ]
@@ -28,5 +28,5 @@ nom-packrat = "0.5"
2828nom-recursive = {version = " 0.3" , features = [" tracer128" ]}
2929nom-tracable = " 0.7"
3030str-concat = " 0.2"
31- sv-parser-macros = {version = " ^0.12.0 " , path = " ../sv-parser-macros" }
32- sv-parser-syntaxtree = {version = " ^0.12.0 " , path = " ../sv-parser-syntaxtree" }
31+ sv-parser-macros = {version = " ^0.12.1 " , path = " ../sv-parser-macros" }
32+ sv-parser-syntaxtree = {version = " ^0.12.1 " , path = " ../sv-parser-syntaxtree" }
Original file line number Diff line number Diff line change 11[package ]
22name = " sv-parser-pp"
3- version = " 0.12.0 "
3+ version = " 0.12.1 "
44authors = [" dalance@gmail.com" ]
55repository = " https://github.com/dalance/sv-parser"
66keywords = [" parser" , " verilog" , " systemverilog" ]
@@ -23,6 +23,6 @@ trace = ["sv-parser-parser/trace"]
2323[dependencies ]
2424nom = " 6"
2525nom-greedyerror = " 0.3"
26- sv-parser-error = {version = " ^0.12.0 " , path = " ../sv-parser-error" }
27- sv-parser-parser = {version = " ^0.12.0 " , path = " ../sv-parser-parser" }
28- sv-parser-syntaxtree = {version = " ^0.12.0 " , path = " ../sv-parser-syntaxtree" }
26+ sv-parser-error = {version = " ^0.12.1 " , path = " ../sv-parser-error" }
27+ sv-parser-parser = {version = " ^0.12.1 " , path = " ../sv-parser-parser" }
28+ sv-parser-syntaxtree = {version = " ^0.12.1 " , path = " ../sv-parser-syntaxtree" }
Original file line number Diff line number Diff line change 11[package ]
22name = " sv-parser-syntaxtree"
3- version = " 0.12.0 "
3+ version = " 0.12.1 "
44authors = [" dalance@gmail.com" ]
55repository = " https://github.com/dalance/sv-parser"
66keywords = [" parser" , " verilog" , " systemverilog" ]
@@ -18,7 +18,7 @@ doctest = false
1818tag = false
1919
2020[dependencies ]
21- sv-parser-macros = {version = " ^0.12.0 " , path = " ../sv-parser-macros" }
21+ sv-parser-macros = {version = " ^0.12.1 " , path = " ../sv-parser-macros" }
2222
2323[build-dependencies ]
2424regex = " 1"
Original file line number Diff line number Diff line change 11[package ]
22name = " sv-parser"
3- version = " 0.12.0 "
3+ version = " 0.12.1 "
44authors = [" dalance@gmail.com" ]
55repository = " https://github.com/dalance/sv-parser"
66keywords = [" parser" , " verilog" , " systemverilog" ]
@@ -28,10 +28,10 @@ trace = ["sv-parser-parser/trace"]
2828[dependencies ]
2929nom = " 6"
3030nom-greedyerror = " 0.3"
31- sv-parser-error = {version = " ^0.12.0 " , path = " ../sv-parser-error" }
32- sv-parser-parser = {version = " ^0.12.0 " , path = " ../sv-parser-parser" }
33- sv-parser-pp = {version = " ^0.12.0 " , path = " ../sv-parser-pp" }
34- sv-parser-syntaxtree = {version = " ^0.12.0 " , path = " ../sv-parser-syntaxtree" }
31+ sv-parser-error = {version = " ^0.12.1 " , path = " ../sv-parser-error" }
32+ sv-parser-parser = {version = " ^0.12.1 " , path = " ../sv-parser-parser" }
33+ sv-parser-pp = {version = " ^0.12.1 " , path = " ../sv-parser-pp" }
34+ sv-parser-syntaxtree = {version = " ^0.12.1 " , path = " ../sv-parser-syntaxtree" }
3535
3636[dev-dependencies ]
3737structopt = " 0.3.2"
You can’t perform that action at this time.
0 commit comments