Skip to content

Commit f244e7c

Browse files
authored
*: bump 0.5.4 (#476)
Signed-off-by: Xintao <[email protected]>
1 parent 8ea3bf2 commit f244e7c

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 0.5.4 - 2020-07-23
2+
3+
- Add user-defined callback to `EnvBuilder` (#474)
4+
15
# 0.5.3 - 2020-05-07
26

37
- Switch to github action and update badge

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "grpcio"
3-
version = "0.5.3"
3+
version = "0.5.4"
44
edition = "2018"
55
authors = ["The TiKV Project Developers"]
66
license = "Apache-2.0"

src/channel.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,7 @@ impl ChannelBuilder {
391391
}
392392

393393
/// Build `ChannelArgs` from the current configuration.
394-
#[allow(clippy::identity_conversion)]
394+
#[allow(clippy::useless_conversion)]
395395
pub fn build_args(&self) -> ChannelArgs {
396396
let args = unsafe { grpc_sys::grpcwrap_channel_args_create(self.options.len()) };
397397
for (i, (k, v)) in self.options.iter().enumerate() {

0 commit comments

Comments
 (0)