Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release ttrpc-compiler v0.6.0 and ttrpc-codegen v0.4.0 #154

Merged
merged 2 commits into from
Aug 12, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion compiler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ttrpc-compiler"
version = "0.5.0"
version = "0.6.0"
edition = "2018"
authors = ["The AntFin Kata Team <[email protected]>"]
license = "Apache-2.0"
Expand Down
5 changes: 3 additions & 2 deletions compiler/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,6 @@ generate rust version ttrpc code from proto files.
| ttrpc-compiler version | ttrpc version |
| ------------- | ------------- |
| 0.3.x | <= 0.4.x |
| 0.4.x | = 0.5.x |
| 0.5.x | >= 0.6.x |
| 0.4.x | == 0.5.x |
| 0.5.x | == 0.6.x |
| 0.6.x | >= 0.7.x |
4 changes: 2 additions & 2 deletions ttrpc-codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ttrpc-codegen"
version = "0.3.0"
version = "0.4.0"
edition = "2018"
authors = ["The AntFin Kata Team <[email protected]>"]
license = "Apache-2.0"
Expand All @@ -16,4 +16,4 @@ readme = "README.md"
protobuf = { version = "2.14.0" }
protobuf-codegen-pure = "2.14.0"
protobuf-codegen = "2.14.0"
ttrpc-compiler = { version = "0.5.0", path = "../compiler" }
ttrpc-compiler = "0.6.0"
5 changes: 3 additions & 2 deletions ttrpc-codegen/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,9 @@ ttrpc-codegen = "0.2"
| ttrpc-codegen version | ttrpc version |
| ------------- | ------------- |
| 0.1.x | <= 0.4.x |
| 0.2.x | >= 0.5.x |
| 0.3.x | >= 0.6.x |
| 0.2.x | == 0.5.x |
| 0.3.x | == 0.6.x |
| 0.4.x | >= 0.7.x |

## Alternative
The alternative is to use
Expand Down