From 51b6deacda2eb692d394133878de5eebef5fcd77 Mon Sep 17 00:00:00 2001 From: Sam Batschelet Date: Mon, 4 Sep 2023 23:31:05 -0400 Subject: [PATCH] bump protoc-gen-prost Signed-off-by: Sam Batschelet --- crates/avalanche-types/scripts/protobuf_codegen.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/avalanche-types/scripts/protobuf_codegen.sh b/crates/avalanche-types/scripts/protobuf_codegen.sh index eb97e16..d041655 100755 --- a/crates/avalanche-types/scripts/protobuf_codegen.sh +++ b/crates/avalanche-types/scripts/protobuf_codegen.sh @@ -23,9 +23,9 @@ fi # protoc plugin "protoc-gen-prost" is required # # e.g., -# cargo install protoc-gen-prost --version 0.2.2 +# cargo install protoc-gen-prost --version 0.2.3 # ref. https://crates.io/crates/protoc-gen-prost -PROTOC_GEN_PROST_VERSION=0.2.2 +PROTOC_GEN_PROST_VERSION=0.2.3 if [[ $(protoc-gen-prost --version | cut -f2 -d' ') != "${PROTOC_GEN_PROST_VERSION}" ]]; then echo "could not find protoc-gen-prost version ${PROTOC_GEN_PROST_VERSION} is it installed + in PATH?" exit 255