Skip to content

Commit

Permalink
proto: regenerate from latest versions
Browse files Browse the repository at this point in the history
Use these version tags to generate protobuf bindings for
the supported CometBFT releases:
- v0.34.29
- v0.37.2
- v0.38.0-rc3
  • Loading branch information
mzabaluev committed Sep 20, 2023
1 parent 7f44d26 commit 15efeb0
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions proto/src/prost/v0_38/tendermint.rpc.grpc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ pub mod broadcast_api_server {
tonic::Status,
>;
}
/// BroadcastAPI
///
/// Deprecated: This API will be superseded by a more comprehensive gRPC-based
/// broadcast API, and is scheduled for removal after v0.38.
#[derive(Debug)]
pub struct BroadcastApiServer<T: BroadcastApi> {
inner: _Inner<T>,
Expand Down
2 changes: 1 addition & 1 deletion proto/src/tendermint/v0_34.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,5 +62,5 @@ pub mod version {

pub mod meta {
pub const REPOSITORY: &str = "https://github.com/cometbft/cometbft";
pub const COMMITISH: &str = "v0.34.28";
pub const COMMITISH: &str = "v0.34.29";
}
2 changes: 1 addition & 1 deletion proto/src/tendermint/v0_37.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,5 +62,5 @@ pub mod version {

pub mod meta {
pub const REPOSITORY: &str = "https://github.com/cometbft/cometbft";
pub const COMMITISH: &str = "v0.37.1";
pub const COMMITISH: &str = "v0.37.2";
}
2 changes: 1 addition & 1 deletion proto/src/tendermint/v0_38.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,5 +62,5 @@ pub mod version {

pub mod meta {
pub const REPOSITORY: &str = "https://github.com/cometbft/cometbft";
pub const COMMITISH: &str = "v0.38.0-alpha.1";
pub const COMMITISH: &str = "v0.38.0-rc3";
}
6 changes: 3 additions & 3 deletions tools/proto-compiler/src/constants.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,17 @@ pub const TENDERMINT_VERSIONS: &[TendermintVersion] = &[
TendermintVersion {
repo: "https://github.com/cometbft/cometbft",
ident: "v0_34",
commitish: "v0.34.28",
commitish: "v0.34.29",
},
TendermintVersion {
repo: "https://github.com/cometbft/cometbft",
ident: "v0_37",
commitish: "v0.37.1",
commitish: "v0.37.2",
},
TendermintVersion {
repo: "https://github.com/cometbft/cometbft",
ident: "v0_38",
commitish: "v0.38.0-alpha.1",
commitish: "v0.38.0-rc3",
},
];

Expand Down

0 comments on commit 15efeb0

Please sign in to comment.