Skip to content

Commit f961da1

Browse files
committed
Prepare to release
1 parent 123b577 commit f961da1

File tree

8 files changed

+20
-18
lines changed

8 files changed

+20
-18
lines changed

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.13.3...Unreleased) - ReleaseDate
3+
## [Unreleased](https://github.com/dalance/sv-parser/compare/v0.13.4...Unreleased) - ReleaseDate
4+
5+
## [v0.13.4](https://github.com/dalance/sv-parser/compare/v0.13.3...v0.13.4) - 2025-11-04
46

57
* [Added] Add docstrings to unwrap_node and unwrap_locate macros [#111](https://github.com/dalance/sv-parser/pull/111)
68
* [Fixed] add pattern ::= '(' pattern ')' production [#113](https://github.com/dalance/sv-parser/pull/113)

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.13.3"
19+
sv-parser = "0.13.4"
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.13.3"
3+
version = "0.13.4"
44
authors = ["[email protected]"]
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.13.3"
3+
version = "0.13.4"
44
authors = ["[email protected]"]
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.13.3"
3+
version = "0.13.4"
44
authors = ["[email protected]"]
55
repository = "https://github.com/dalance/sv-parser"
66
keywords = ["parser", "verilog", "systemverilog"]
@@ -28,5 +28,5 @@ nom-packrat = "0.7"
2828
nom-recursive = {version = "0.5", features = ["tracer128"]}
2929
nom-tracable = "0.9"
3030
str-concat = "0.2"
31-
sv-parser-macros = {version = "^0.13.3", path = "../sv-parser-macros"}
32-
sv-parser-syntaxtree = {version = "^0.13.3", path = "../sv-parser-syntaxtree"}
31+
sv-parser-macros = {version = "^0.13.4", path = "../sv-parser-macros"}
32+
sv-parser-syntaxtree = {version = "^0.13.4", 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.13.3"
3+
version = "0.13.4"
44
authors = ["[email protected]"]
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 = "7"
2525
nom-greedyerror = "0.5"
26-
sv-parser-error = {version = "^0.13.3", path = "../sv-parser-error"}
27-
sv-parser-parser = {version = "^0.13.3", path = "../sv-parser-parser"}
28-
sv-parser-syntaxtree = {version = "^0.13.3", path = "../sv-parser-syntaxtree"}
26+
sv-parser-error = {version = "^0.13.4", path = "../sv-parser-error"}
27+
sv-parser-parser = {version = "^0.13.4", path = "../sv-parser-parser"}
28+
sv-parser-syntaxtree = {version = "^0.13.4", 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.13.3"
3+
version = "0.13.4"
44
authors = ["[email protected]"]
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.13.3", path = "../sv-parser-macros"}
21+
sv-parser-macros = {version = "^0.13.4", 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.13.3"
3+
version = "0.13.4"
44
authors = ["[email protected]"]
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 = "7"
3030
nom-greedyerror = "0.5"
31-
sv-parser-error = {version = "^0.13.3", path = "../sv-parser-error"}
32-
sv-parser-parser = {version = "^0.13.3", path = "../sv-parser-parser"}
33-
sv-parser-pp = {version = "^0.13.3", path = "../sv-parser-pp"}
34-
sv-parser-syntaxtree = {version = "^0.13.3", path = "../sv-parser-syntaxtree"}
31+
sv-parser-error = {version = "^0.13.4", path = "../sv-parser-error"}
32+
sv-parser-parser = {version = "^0.13.4", path = "../sv-parser-parser"}
33+
sv-parser-pp = {version = "^0.13.4", path = "../sv-parser-pp"}
34+
sv-parser-syntaxtree = {version = "^0.13.4", path = "../sv-parser-syntaxtree"}
3535

3636
[dev-dependencies]
3737
structopt = "0.3.2"

0 commit comments

Comments
 (0)