Version 2.2.55

Update the 2.2 branch to test with version 1.1.3 of the desugared
library.

Bug: 167649682
Bug: 172834444
Bug: 179397308
Change-Id: Id915e6c5ed24297a3aa0e26dfaf339192e60b205
diff --git a/src/main/java/com/android/tools/r8/Version.java b/src/main/java/com/android/tools/r8/Version.java
index a84adae..3fd016c 100644
--- a/src/main/java/com/android/tools/r8/Version.java
+++ b/src/main/java/com/android/tools/r8/Version.java
@@ -11,7 +11,7 @@
 
   // This field is accessed from release scripts using simple pattern matching.
   // Therefore, changing this field could break our release scripts.
-  public static final String LABEL = "2.2.54";
+  public static final String LABEL = "2.2.55";
 
   private Version() {
   }
diff --git a/src/test/java/com/android/tools/r8/desugar/desugaredlibrary/BufferedReaderTest.java b/src/test/java/com/android/tools/r8/desugar/desugaredlibrary/BufferedReaderTest.java
index faf9a9d..ca03a29 100644
--- a/src/test/java/com/android/tools/r8/desugar/desugaredlibrary/BufferedReaderTest.java
+++ b/src/test/java/com/android/tools/r8/desugar/desugaredlibrary/BufferedReaderTest.java
@@ -23,6 +23,7 @@
 import java.nio.file.Path;
 import java.util.List;
 import org.junit.Assume;
+import org.junit.Ignore;
 import org.junit.Test;
 import org.junit.runner.RunWith;
 import org.junit.runners.Parameterized;
@@ -81,6 +82,7 @@
   }
 
   @Test
+  @Ignore("ToolHelper.DESUGAR_LIB_JSON_FOR_TESTING_ALTERNATIVE_3 is not supported on 2.2")
   public void testBufferedReaderD8Cf() throws Exception {
     KeepRuleConsumer keepRuleConsumer = createKeepRuleConsumer(parameters);
     // Use D8 to desugar with Java classfile output.
@@ -136,6 +138,7 @@
   }
 
   @Test
+  @Ignore("ToolHelper.DESUGAR_LIB_JSON_FOR_TESTING_ALTERNATIVE_3 is not supported on 2.2")
   public void testBufferedReaderD8() throws Exception {
     expectThrowsWithHorizontalClassMergingIf(
         shrinkDesugaredLibrary && parameters.getApiLevel().isLessThan(AndroidApiLevel.N));
@@ -166,6 +169,7 @@
   }
 
   @Test
+  @Ignore("ToolHelper.DESUGAR_LIB_JSON_FOR_TESTING_ALTERNATIVE_3 is not supported on 2.2")
   public void testBufferedReaderR8() throws Exception {
     expectThrowsWithHorizontalClassMergingIf(
         shrinkDesugaredLibrary && parameters.getApiLevel().isLessThan(AndroidApiLevel.N));