Skip to content

Commit f59b676

Browse files
committed
Prepare to release
1 parent eef4bc5 commit f59b676

8 files changed

Lines changed: 20 additions & 18 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

2222
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-error/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sv-parser-error"
3-
version = "0.12.0"
3+
version = "0.12.1"
44
authors = ["dalance@gmail.com"]
55
repository = "https://github.com/dalance/sv-parser"
66
keywords = ["parser", "verilog", "systemverilog"]

sv-parser-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sv-parser-macros"
3-
version = "0.12.0"
3+
version = "0.12.1"
44
authors = ["dalance@gmail.com"]
55
repository = "https://github.com/dalance/sv-parser"
66
keywords = ["parser", "verilog", "systemverilog"]

sv-parser-parser/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sv-parser-parser"
3-
version = "0.12.0"
3+
version = "0.12.1"
44
authors = ["dalance@gmail.com"]
55
repository = "https://github.com/dalance/sv-parser"
66
keywords = ["parser", "verilog", "systemverilog"]
@@ -28,5 +28,5 @@ nom-packrat = "0.5"
2828
nom-recursive = {version = "0.3", features = ["tracer128"]}
2929
nom-tracable = "0.7"
3030
str-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"}

sv-parser-pp/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sv-parser-pp"
3-
version = "0.12.0"
3+
version = "0.12.1"
44
authors = ["dalance@gmail.com"]
55
repository = "https://github.com/dalance/sv-parser"
66
keywords = ["parser", "verilog", "systemverilog"]
@@ -23,6 +23,6 @@ trace = ["sv-parser-parser/trace"]
2323
[dependencies]
2424
nom = "6"
2525
nom-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"}

sv-parser-syntaxtree/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sv-parser-syntaxtree"
3-
version = "0.12.0"
3+
version = "0.12.1"
44
authors = ["dalance@gmail.com"]
55
repository = "https://github.com/dalance/sv-parser"
66
keywords = ["parser", "verilog", "systemverilog"]
@@ -18,7 +18,7 @@ doctest = false
1818
tag = 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]
2424
regex = "1"

sv-parser/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sv-parser"
3-
version = "0.12.0"
3+
version = "0.12.1"
44
authors = ["dalance@gmail.com"]
55
repository = "https://github.com/dalance/sv-parser"
66
keywords = ["parser", "verilog", "systemverilog"]
@@ -28,10 +28,10 @@ trace = ["sv-parser-parser/trace"]
2828
[dependencies]
2929
nom = "6"
3030
nom-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]
3737
structopt = "0.3.2"

0 commit comments

Comments
 (0)