From 39071997acaa943d934aa65edfe26d1cf59aaa45 Mon Sep 17 00:00:00 2001 From: Mike Nguyen Date: Mon, 4 Nov 2024 17:24:21 +0000 Subject: [PATCH] chore: release versioning (#232) * chore: release versioning Signed-off-by: Mike Nguyen * docs: update dep version Signed-off-by: Mike Nguyen --------- Signed-off-by: Mike Nguyen --- Cargo.toml | 4 ++-- README.md | 4 +++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 3d3a09c6..2126e832 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" @@ -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 ", "The Dapr Authors " diff --git a/README.md b/README.md index f0f01b1e..b7fdac92 100644 --- a/README.md +++ b/README.md @@ -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: