version: bump (#133)

This commit is contained in:
Kirill Fomichev 2023-05-26 21:00:50 -04:00 committed by GitHub
parent 604add3080
commit e03a47c0cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 14 additions and 14 deletions

8
Cargo.lock generated
View File

@ -4259,7 +4259,7 @@ dependencies = [
[[package]]
name = "yellowstone-grpc-client"
version = "1.1.1+solana.1.15.2"
version = "1.2.0+solana.1.15.2"
dependencies = [
"bytes",
"futures",
@ -4272,7 +4272,7 @@ dependencies = [
[[package]]
name = "yellowstone-grpc-client-simple"
version = "1.1.0+solana.1.15.2"
version = "1.2.0+solana.1.15.2"
dependencies = [
"anyhow",
"backoff",
@ -4290,7 +4290,7 @@ dependencies = [
[[package]]
name = "yellowstone-grpc-geyser"
version = "0.6.1+solana.1.15.2"
version = "0.7.0+solana.1.15.2"
dependencies = [
"anyhow",
"base64 0.21.0",
@ -4320,7 +4320,7 @@ dependencies = [
[[package]]
name = "yellowstone-grpc-proto"
version = "1.1.0+solana.1.15.2"
version = "1.2.0+solana.1.15.2"
dependencies = [
"anyhow",
"prost",

View File

@ -1,9 +1,9 @@
[workspace]
members = [
"examples/rust", # 1.0.0+solana.1.15.2
"yellowstone-grpc-client", # 1.0.1+solana.1.15.2
"yellowstone-grpc-geyser", # 0.5.3+solana.1.15.2
"yellowstone-grpc-proto", # 1.0.1+solana.1.15.2
"examples/rust", # 1.2.0+solana.1.15.2
"yellowstone-grpc-client", # 1.2.0+solana.1.15.2
"yellowstone-grpc-geyser", # 0.7.0+solana.1.15.2
"yellowstone-grpc-proto", # 1.2.0+solana.1.15.2
]
[profile.release]

View File

@ -1,6 +1,6 @@
[package]
name = "yellowstone-grpc-client-simple"
version = "1.1.0+solana.1.15.2"
version = "1.2.0+solana.1.15.2"
authors = ["Triton One"]
edition = "2021"
publish = false

View File

@ -1,6 +1,6 @@
[package]
name = "yellowstone-grpc-client"
version = "1.1.1+solana.1.15.2"
version = "1.2.0+solana.1.15.2"
authors = ["Triton One"]
edition = "2021"
description = "Yellowstone gRPC Geyser Simple Client"
@ -15,7 +15,7 @@ futures = "0.3.24"
http = "0.2.8"
thiserror = "1.0"
tonic = { version = "0.8.2", features = ["gzip", "tls", "tls-roots"] }
yellowstone-grpc-proto = { path = "../yellowstone-grpc-proto", version = "1.1.0+solana.1.15.2" }
yellowstone-grpc-proto = { path = "../yellowstone-grpc-proto", version = "1.2.0+solana.1.15.2" }
[dev-dependencies]
tokio = { version = "1.21.2", features = ["macros"] }

View File

@ -1,6 +1,6 @@
[package]
name = "yellowstone-grpc-geyser"
version = "0.6.1+solana.1.15.2"
version = "0.7.0+solana.1.15.2"
authors = ["Triton One"]
edition = "2021"
description = "Yellowstone gRPC Geyser Plugin"

View File

@ -1,6 +1,6 @@
[package]
name = "yellowstone-grpc-proto"
version = "1.1.0+solana.1.15.2"
version = "1.2.0+solana.1.15.2"
authors = ["Triton One"]
edition = "2021"
description = "Yellowstone gRPC Geyser Protobuf Definitions"

View File

@ -12,7 +12,7 @@ service Geyser {
rpc GetLatestBlockhash(GetLatestBlockhashRequest) returns (GetLatestBlockhashResponse) {}
rpc GetBlockHeight(GetBlockHeightRequest) returns (GetBlockHeightResponse) {}
rpc GetSlot(GetSlotRequest) returns (GetSlotResponse) {}
rpc isBlockhashValid(IsBlockhashValidRequest) returns (IsBlockhashValidResponse) {}
rpc IsBlockhashValid(IsBlockhashValidRequest) returns (IsBlockhashValidResponse) {}
rpc GetVersion(GetVersionRequest) returns (GetVersionResponse) {}
}