https://github.com/etcd-io/etcd
Raw File
Tip revision: fb559105006337157635673f216c2f1392050f83 authored by Marek Siarkowicz on 28 February 2022, 12:20:27 UTC
version: bump up to 3.6.0-alpha.0
Tip revision: fb55910
update_proto_annotations.sh
#!/usr/bin/env bash
# Updates etcd_version_annotations.txt based on state of annotations in proto files.
# Developers can run this script to avoid manually updating etcd_version_annotations.txt.
# Before running this script please ensure that fields/messages that you added are annotated with next etcd version.

set -o errexit
set -o nounset
set -o pipefail

tmpfile=$(mktemp)
go run ./tools/proto-annotations/main.go --annotation etcd_version > "${tmpfile}"
mv "${tmpfile}" ./scripts/etcd_version_annotations.txt
back to top