Skip to content

Commit

Permalink
Prepare to release
Browse files Browse the repository at this point in the history
  • Loading branch information
dalance committed Aug 28, 2020
1 parent b678874 commit 9727db0
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 18 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Change Log

## [Unreleased](https://github.com/dalance/sv-parser/compare/v0.8.0...Unreleased) - ReleaseDate
## [Unreleased](https://github.com/dalance/sv-parser/compare/v0.8.1...Unreleased) - ReleaseDate

## [v0.8.1](https://github.com/dalance/sv-parser/compare/v0.8.0...v0.8.1) - 2020-08-28

* [Fixed] text macro with single line comment [#12](https://github.com/dalance/sv-parser/issues/12)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ SystemVerilog parser library fully compliant with [IEEE 1800-2017](https://stand

```Cargo.toml
[dependencies]
sv-parser = "0.8.0"
sv-parser = "0.8.1"
```

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).
Expand Down
2 changes: 1 addition & 1 deletion sv-parser-error/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sv-parser-error"
version = "0.8.0"
version = "0.8.1"
authors = ["dalance@gmail.com"]
repository = "https://github.com/dalance/sv-parser"
keywords = ["parser", "verilog", "systemverilog"]
Expand Down
2 changes: 1 addition & 1 deletion sv-parser-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sv-parser-macros"
version = "0.8.0"
version = "0.8.1"
authors = ["dalance@gmail.com"]
repository = "https://github.com/dalance/sv-parser"
keywords = ["parser", "verilog", "systemverilog"]
Expand Down
6 changes: 3 additions & 3 deletions sv-parser-parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sv-parser-parser"
version = "0.8.0"
version = "0.8.1"
authors = ["dalance@gmail.com"]
repository = "https://github.com/dalance/sv-parser"
keywords = ["parser", "verilog", "systemverilog"]
Expand All @@ -25,5 +25,5 @@ nom-packrat = "0.4"
nom-recursive = {version = "0.2", features = ["tracer128"]}
nom-tracable = "0.6"
str-concat = "0.2"
sv-parser-macros = {version = "^0.8.0", path = "../sv-parser-macros"}
sv-parser-syntaxtree = {version = "^0.8.0", path = "../sv-parser-syntaxtree"}
sv-parser-macros = {version = "^0.8.1", path = "../sv-parser-macros"}
sv-parser-syntaxtree = {version = "^0.8.1", path = "../sv-parser-syntaxtree"}
8 changes: 4 additions & 4 deletions sv-parser-pp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sv-parser-pp"
version = "0.8.0"
version = "0.8.1"
authors = ["dalance@gmail.com"]
repository = "https://github.com/dalance/sv-parser"
keywords = ["parser", "verilog", "systemverilog"]
Expand All @@ -20,6 +20,6 @@ trace = ["sv-parser-parser/trace"]
[dependencies]
nom = "5"
nom-greedyerror = "0.2"
sv-parser-error = {version = "^0.8.0", path = "../sv-parser-error"}
sv-parser-parser = {version = "^0.8.0", path = "../sv-parser-parser"}
sv-parser-syntaxtree = {version = "^0.8.0", path = "../sv-parser-syntaxtree"}
sv-parser-error = {version = "^0.8.1", path = "../sv-parser-error"}
sv-parser-parser = {version = "^0.8.1", path = "../sv-parser-parser"}
sv-parser-syntaxtree = {version = "^0.8.1", path = "../sv-parser-syntaxtree"}
4 changes: 2 additions & 2 deletions sv-parser-syntaxtree/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sv-parser-syntaxtree"
version = "0.8.0"
version = "0.8.1"
authors = ["dalance@gmail.com"]
repository = "https://github.com/dalance/sv-parser"
keywords = ["parser", "verilog", "systemverilog"]
Expand All @@ -15,7 +15,7 @@ build = "build.rs"
disable-tag = true

[dependencies]
sv-parser-macros = {version = "^0.8.0", path = "../sv-parser-macros"}
sv-parser-macros = {version = "^0.8.1", path = "../sv-parser-macros"}

[build-dependencies]
regex = "1"
Expand Down
10 changes: 5 additions & 5 deletions sv-parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sv-parser"
version = "0.8.0"
version = "0.8.1"
authors = ["dalance@gmail.com"]
repository = "https://github.com/dalance/sv-parser"
keywords = ["parser", "verilog", "systemverilog"]
Expand All @@ -25,10 +25,10 @@ trace = ["sv-parser-parser/trace"]
[dependencies]
nom = "5"
nom-greedyerror = "0.2"
sv-parser-error = {version = "^0.8.0", path = "../sv-parser-error"}
sv-parser-parser = {version = "^0.8.0", path = "../sv-parser-parser"}
sv-parser-pp = {version = "^0.8.0", path = "../sv-parser-pp"}
sv-parser-syntaxtree = {version = "^0.8.0", path = "../sv-parser-syntaxtree"}
sv-parser-error = {version = "^0.8.1", path = "../sv-parser-error"}
sv-parser-parser = {version = "^0.8.1", path = "../sv-parser-parser"}
sv-parser-pp = {version = "^0.8.1", path = "../sv-parser-pp"}
sv-parser-syntaxtree = {version = "^0.8.1", path = "../sv-parser-syntaxtree"}

[dev-dependencies]
structopt = "0.3.2"
Expand Down

0 comments on commit 9727db0

Please sign in to comment.