You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I use glide to fetch semantic version releases. But the compiler plugin protoc-gen-grpc-gateway or protoc-gen-swagger need to be get with go get, which always fetches the latest commit (as far as I know). So sometimes my runtime library is the latest released version, eg 1.2.0, but my compiler plugin is generating code with commits ahead of 1.2.0, and the generated code is not compatible with runtime library. How do people solve this problem?
The text was updated successfully, but these errors were encountered:
I use
glide
to fetch semantic version releases. But the compiler pluginprotoc-gen-grpc-gateway
orprotoc-gen-swagger
need to be get withgo get
, which always fetches the latest commit (as far as I know). So sometimes my runtime library is the latest released version, eg1.2.0
, but my compiler plugin is generating code with commits ahead of1.2.0
, and the generated code is not compatible with runtime library. How do people solve this problem?The text was updated successfully, but these errors were encountered: