Skip to content

Commit f725cdd

Browse files
pmantica11fanatid
authored andcommitted
client: re-export ClientTlsConfig (#512)
1 parent d3c5359 commit f725cdd

File tree

5 files changed

+21
-5
lines changed

5 files changed

+21
-5
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,22 @@ The minor version will be incremented upon a breaking change and the patch versi
1616

1717
### Breaking
1818

19+
## 2025-01-13
20+
21+
- yellowstone-grpc-client-3.1.1
22+
23+
### Fixes
24+
25+
- client: re-export `ClientTlsConfig` ([#512](https://github.com/rpcpool/yellowstone-grpc/pull/512))
26+
27+
## 2025-01-13
28+
29+
- yellowstone-grpc-client-4.1.1
30+
31+
### Fixes
32+
33+
- client: re-export `ClientTlsConfig` ([#512](https://github.com/rpcpool/yellowstone-grpc/pull/512))
34+
1935
## 2025-01-07
2036

2137
- @triton-one/yellowstone-grpc@2.0.0

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
resolver = "2"
33
members = [
44
"examples/rust", # 3.3.0
5-
"yellowstone-grpc-client", # 3.1.0
5+
"yellowstone-grpc-client", # 3.1.1
66
"yellowstone-grpc-geyser", # 3.2.2
77
"yellowstone-grpc-proto", # 3.1.1
88
]

yellowstone-grpc-client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "yellowstone-grpc-client"
3-
version = "3.1.0"
3+
version = "3.1.1"
44
authors = { workspace = true }
55
edition = { workspace = true }
66
description = "Yellowstone gRPC Geyser Simple Client"

yellowstone-grpc-client/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
pub use tonic::service::Interceptor;
1+
pub use tonic::{service::Interceptor, transport::ClientTlsConfig};
22
use {
33
bytes::Bytes,
44
futures::{
@@ -11,7 +11,7 @@ use {
1111
codec::{CompressionEncoding, Streaming},
1212
metadata::{errors::InvalidMetadataValue, AsciiMetadataValue, MetadataValue},
1313
service::interceptor::InterceptedService,
14-
transport::channel::{Channel, ClientTlsConfig, Endpoint},
14+
transport::channel::{Channel, Endpoint},
1515
Request, Response, Status,
1616
},
1717
tonic_health::pb::{health_client::HealthClient, HealthCheckRequest, HealthCheckResponse},

0 commit comments

Comments
 (0)