From 3b558eb82c2f6568e4c2845e26fb6456e7b1f4ec Mon Sep 17 00:00:00 2001 From: Jason Borg Date: Wed, 31 May 2023 19:52:51 +0000 Subject: [PATCH] chore: Release version 4.0 This version talks to the Firebase RTDB backend by default. --- .../devtools/cdbg/debuglets/java/GcpDebugletVersion.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/agent/internals/src/main/java/com/google/devtools/cdbg/debuglets/java/GcpDebugletVersion.java b/src/agent/internals/src/main/java/com/google/devtools/cdbg/debuglets/java/GcpDebugletVersion.java index cd1d8aa..508e1ec 100644 --- a/src/agent/internals/src/main/java/com/google/devtools/cdbg/debuglets/java/GcpDebugletVersion.java +++ b/src/agent/internals/src/main/java/com/google/devtools/cdbg/debuglets/java/GcpDebugletVersion.java @@ -21,10 +21,10 @@ public final class GcpDebugletVersion { *

All agents of the same major version are compatible with each other. In other words an * application can mix different agents with the same major version within the same debuggee. */ - public static final int MAJOR_VERSION = 3; + public static final int MAJOR_VERSION = 4; /** Minor version of the agent. */ - public static final int MINOR_VERSION = 3; + public static final int MINOR_VERSION = 0; /** Debugger agent version string in the format of MAJOR.MINOR. */ public static final String VERSION = String.format("%d.%d", MAJOR_VERSION, MINOR_VERSION);