| Index: runtime/vm/service.cc
|
| diff --git a/runtime/vm/service.cc b/runtime/vm/service.cc
|
| index c01256e9ffa0cc2d4d05be54cbba0b9cf13c6f04..bb9ada10a091635cd3039fb2974d1c2e981a41db 100644
|
| --- a/runtime/vm/service.cc
|
| +++ b/runtime/vm/service.cc
|
| @@ -3833,8 +3833,10 @@ static const MethodParameter* get_version_params[] = {
|
| static bool GetVersion(Thread* thread, JSONStream* js) {
|
| JSONObject jsobj(js);
|
| jsobj.AddProperty("type", "Version");
|
| - jsobj.AddProperty("major", static_cast<intptr_t>(3));
|
| - jsobj.AddProperty("minor", static_cast<intptr_t>(5));
|
| + jsobj.AddProperty("major",
|
| + static_cast<intptr_t>(SERVICE_PROTOCOL_MAJOR_VERSION));
|
| + jsobj.AddProperty("minor",
|
| + static_cast<intptr_t>(SERVICE_PROTOCOL_MINOR_VERSION));
|
| jsobj.AddProperty("_privateMajor", static_cast<intptr_t>(0));
|
| jsobj.AddProperty("_privateMinor", static_cast<intptr_t>(0));
|
| return true;
|
|
|