From bc259050b594acaa4e21c1294b0deaed56f8f1bd Mon Sep 17 00:00:00 2001 From: Jay Date: Mon, 28 Mar 2022 15:54:05 +0800 Subject: [PATCH] bump 0.10.1 (#567) Signed-off-by: Jay Lee --- CHANGELOG.md | 4 ++++ Cargo.toml | 4 ++-- grpc-sys/Cargo.toml | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e62ae43..7ce654e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.10.1 - 2022-03-28 + +- Fix potential UAF and double free (#566) + # 0.10.0 - 2022-03-02 - Update prost to 0.9.0 (#544) (#559) diff --git a/Cargo.toml b/Cargo.toml index 10cbddfc..966ef443 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "grpcio" -version = "0.10.0" +version = "0.10.1" edition = "2018" authors = ["The TiKV Project Developers"] license = "Apache-2.0" @@ -17,7 +17,7 @@ autoexamples = false all-features = true [dependencies] -grpcio-sys = { path = "grpc-sys", version = "0.10.0", default-features = false } +grpcio-sys = { path = "grpc-sys", version = "0.10.1", default-features = false } libc = "0.2" futures-executor = "0.3" futures-util = { version = "0.3", default-features = false, features = ["std", "sink"] } diff --git a/grpc-sys/Cargo.toml b/grpc-sys/Cargo.toml index b9afd3a0..dd9297a3 100644 --- a/grpc-sys/Cargo.toml +++ b/grpc-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "grpcio-sys" -version = "0.10.0+1.44.0" +version = "0.10.1+1.44.0" authors = ["The TiKV Project Developers"] license = "Apache-2.0" keywords = ["grpc", "bindings"]