From 01148711d4d3f9ee566d21b21b80079a7b7206b1 Mon Sep 17 00:00:00 2001 From: jasonborg <48138260+jasonborg@users.noreply.github.com> Date: Tue, 14 Feb 2023 20:45:13 +0000 Subject: [PATCH] chore: release version 3.3 (#72) * Supports App Engine Java8 environment * Contains fix for breakpoint expiry --- .../google/devtools/cdbg/debuglets/java/GcpDebugletVersion.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ba834b5..cd1d8aa 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 @@ -24,7 +24,7 @@ public final class GcpDebugletVersion { public static final int MAJOR_VERSION = 3; /** Minor version of the agent. */ - public static final int MINOR_VERSION = 2; + public static final int MINOR_VERSION = 3; /** Debugger agent version string in the format of MAJOR.MINOR. */ public static final String VERSION = String.format("%d.%d", MAJOR_VERSION, MINOR_VERSION);