Fix wrong version

This commit is contained in:
dalance 2023-03-23 09:48:41 +09:00
parent 76ea7b321a
commit 6b49e5d2a2
6 changed files with 16 additions and 16 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "sv-parser-error"
version = "0.12.2"
version = "0.13.0"
authors = ["dalance@gmail.com"]
repository = "https://github.com/dalance/sv-parser"
keywords = ["parser", "verilog", "systemverilog"]

View File

@ -1,6 +1,6 @@
[package]
name = "sv-parser-macros"
version = "0.12.2"
version = "0.13.0"
authors = ["dalance@gmail.com"]
repository = "https://github.com/dalance/sv-parser"
keywords = ["parser", "verilog", "systemverilog"]

View File

@ -1,6 +1,6 @@
[package]
name = "sv-parser-parser"
version = "0.12.2"
version = "0.13.0"
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.12.2", path = "../sv-parser-macros"}
sv-parser-syntaxtree = {version = "^0.12.2", path = "../sv-parser-syntaxtree"}
sv-parser-macros = {version = "^0.13.0", path = "../sv-parser-macros"}
sv-parser-syntaxtree = {version = "^0.13.0", path = "../sv-parser-syntaxtree"}

View File

@ -1,6 +1,6 @@
[package]
name = "sv-parser-pp"
version = "0.12.2"
version = "0.13.0"
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.12.2", path = "../sv-parser-error"}
sv-parser-parser = {version = "^0.12.2", path = "../sv-parser-parser"}
sv-parser-syntaxtree = {version = "^0.12.2", path = "../sv-parser-syntaxtree"}
sv-parser-error = {version = "^0.13.0", path = "../sv-parser-error"}
sv-parser-parser = {version = "^0.13.0", path = "../sv-parser-parser"}
sv-parser-syntaxtree = {version = "^0.13.0", path = "../sv-parser-syntaxtree"}

View File

@ -1,6 +1,6 @@
[package]
name = "sv-parser-syntaxtree"
version = "0.12.2"
version = "0.13.0"
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.12.2", path = "../sv-parser-macros"}
sv-parser-macros = {version = "^0.13.0", path = "../sv-parser-macros"}
[build-dependencies]
regex = "1"

View File

@ -1,6 +1,6 @@
[package]
name = "sv-parser"
version = "0.12.2"
version = "0.13.0"
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.12.2", path = "../sv-parser-error"}
sv-parser-parser = {version = "^0.12.2", path = "../sv-parser-parser"}
sv-parser-pp = {version = "^0.12.2", path = "../sv-parser-pp"}
sv-parser-syntaxtree = {version = "^0.12.2", path = "../sv-parser-syntaxtree"}
sv-parser-error = {version = "^0.13.0", path = "../sv-parser-error"}
sv-parser-parser = {version = "^0.13.0", path = "../sv-parser-parser"}
sv-parser-pp = {version = "^0.13.0", path = "../sv-parser-pp"}
sv-parser-syntaxtree = {version = "^0.13.0", path = "../sv-parser-syntaxtree"}
[dev-dependencies]
structopt = "0.3.2"