veyron2/ipc/version: Support for Version 3.
https://veyron-review.googlesource.com/#/c/3387/ added IPC version 3 with
support for a fixed authentication protocol. However, we forgot to bump
up the version numbers here, which breaks proxying that relies on knowing
the min/max supported versions.
Change-Id: Ie8881072cdfa41906904ff29ea1181d2e8fd301c
diff --git a/runtimes/google/ipc/version/version.go b/runtimes/google/ipc/version/version.go
index a0fec38..b9a9913 100644
--- a/runtimes/google/ipc/version/version.go
+++ b/runtimes/google/ipc/version/version.go
@@ -21,7 +21,7 @@
// change that's not both forward and backward compatible.
// Min should be incremented whenever we want to remove
// support for old protocol versions.
- supportedRange = &Range{Min: version.IPCVersion1, Max: version.IPCVersion2}
+ supportedRange = &Range{Min: version.IPCVersion1, Max: version.IPCVersion3}
// Export the methods on supportedRange.
Endpoint = supportedRange.Endpoint