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

chore: release versioning #232

Merged
merged 2 commits into from
Nov 4, 2024
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
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ resolver = "2"
[workspace.dependencies]
async-trait = "0.1"

dapr-macros = { version = "0.16.0-rc.1", path = "./dapr-macros" }
dapr-macros = { version = "0.16.0-rc.2", path = "./dapr-macros" }

prost = "0.13.1"
prost-build = "0.13.1"
Expand All @@ -31,7 +31,7 @@ tonic = "0.12.1"
tonic-build = "0.12.1"

[workspace.package]
version = "0.16.0-rc.1"
version = "0.16.0-rc.2"
authors = [
"Mike Nguyen <[email protected]>",
"The Dapr Authors <[email protected]>"
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,15 @@ resiliency.

Ensure you have Rust version 1.78 or higher installed. If not, install Rust [here](https://www.rust-lang.org/tools/install).

These crates no longer require protoc unless to recompile the protobuf files.

## How to use

Add the following to your `Cargo.toml` file:

```toml
[dependencies]
dapr = "0.16.0-rc.1"
dapr = "0.16.0-rc.2"
```

Here's a basic example to create a client:
Expand Down
Loading