Skip to content

Commit

Permalink
client: re-export ClientTlsConfig (#512)
Browse files Browse the repository at this point in the history
  • Loading branch information
pmantica11 authored and fanatid committed Jan 13, 2025
1 parent d3c5359 commit f725cdd
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 5 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,22 @@ The minor version will be incremented upon a breaking change and the patch versi

### Breaking

## 2025-01-13

- yellowstone-grpc-client-3.1.1

### Fixes

- client: re-export `ClientTlsConfig` ([#512](https://github.com/rpcpool/yellowstone-grpc/pull/512))

## 2025-01-13

- yellowstone-grpc-client-4.1.1

### Fixes

- client: re-export `ClientTlsConfig` ([#512](https://github.com/rpcpool/yellowstone-grpc/pull/512))

## 2025-01-07

- @triton-one/yellowstone-grpc@2.0.0
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
resolver = "2"
members = [
"examples/rust", # 3.3.0
"yellowstone-grpc-client", # 3.1.0
"yellowstone-grpc-client", # 3.1.1
"yellowstone-grpc-geyser", # 3.2.2
"yellowstone-grpc-proto", # 3.1.1
]
Expand Down
2 changes: 1 addition & 1 deletion yellowstone-grpc-client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "yellowstone-grpc-client"
version = "3.1.0"
version = "3.1.1"
authors = { workspace = true }
edition = { workspace = true }
description = "Yellowstone gRPC Geyser Simple Client"
Expand Down
4 changes: 2 additions & 2 deletions yellowstone-grpc-client/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pub use tonic::service::Interceptor;
pub use tonic::{service::Interceptor, transport::ClientTlsConfig};
use {
bytes::Bytes,
futures::{
Expand All @@ -11,7 +11,7 @@ use {
codec::{CompressionEncoding, Streaming},
metadata::{errors::InvalidMetadataValue, AsciiMetadataValue, MetadataValue},
service::interceptor::InterceptedService,
transport::channel::{Channel, ClientTlsConfig, Endpoint},
transport::channel::{Channel, Endpoint},
Request, Response, Status,
},
tonic_health::pb::{health_client::HealthClient, HealthCheckRequest, HealthCheckResponse},
Expand Down

0 comments on commit f725cdd

Please sign in to comment.