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

bump tonic version to v0.9 #151

Merged
merged 6 commits into from
Jul 20, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
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: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Changed

- tonic: Update to `tonic` v0.9.3.
wangrunji0408 marked this conversation as resolved.
Show resolved Hide resolved

## [0.2.24] - 2023-06-26

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion madsim-etcd-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ serde_with = "2"
spin = "0.9"
thiserror = "1"
toml = "0.7"
tonic = { version = "0.8", default-features = false }
tonic = { version = "0.9", default-features = false }
tokio = { version = "1", features = ["sync"] }
tracing = "0.1"

Expand Down
6 changes: 3 additions & 3 deletions madsim-tonic/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "madsim-tonic"
version = "0.2.21"
version = "0.2.21+0.9.2"
edition = "2021"
authors = ["Runji Wang <[email protected]>"]
description = "The `tonic` simulator on madsim."
Expand All @@ -16,12 +16,12 @@ license = "Apache-2.0"
tls = ["tonic/tls"]

[target.'cfg(not(madsim))'.dependencies]
tonic = "0.8.3"
tonic = "0.9.2"

[target.'cfg(madsim)'.dependencies]
async-stream = "0.3"
chrono = { version = "0.4", default-features = false, features = ["clock"] }
futures-util = "0.3"
madsim = { version = "0.2.20", path = "../madsim" }
tracing = "0.1"
tonic = { version = "0.8.3", default-features = false, features = ["codegen"] }
tonic = { version = "0.9.2", default-features = false, features = ["codegen"] }