From 4bba75e751266ac39c05ed66329dfa5f02746684 Mon Sep 17 00:00:00 2001 From: Brett Chabot Date: Mon, 24 Jun 2024 16:41:09 +0000 Subject: [PATCH] Increment versions to stable. --- build_extensions/axt_versions.bzl | 20 ++++++++++---------- gradle-tests/settings.gradle | 22 +++++++++++----------- 2 files changed, 21 insertions(+), 21 deletions(-) diff --git a/build_extensions/axt_versions.bzl b/build_extensions/axt_versions.bzl index ad73a35a7..0ca97743e 100644 --- a/build_extensions/axt_versions.bzl +++ b/build_extensions/axt_versions.bzl @@ -4,16 +4,16 @@ Use tools/release/validate_and_propagate_versions.sh to propagate these versions //:axt_m2_repository and gradle-tests/settings.gradle """ -RUNNER_VERSION = "1.6.0-rc01" -RULES_VERSION = "1.6.0-rc01" -MONITOR_VERSION = "1.7.0-rc01" -ESPRESSO_VERSION = "3.6.0-rc01" -CORE_VERSION = "1.6.0-rc01" -ESPRESSO_DEVICE_VERSION = "1.0.0-rc01" -ANDROIDX_JUNIT_VERSION = "1.2.0-rc01" -ANDROIDX_TRUTH_VERSION = "1.6.0-rc01" -ORCHESTRATOR_VERSION = "1.5.0-rc01" -SERVICES_VERSION = "1.5.0-rc01" +RUNNER_VERSION = "1.6.0" +RULES_VERSION = "1.6.0" +MONITOR_VERSION = "1.7.0" +ESPRESSO_VERSION = "3.6.0" +CORE_VERSION = "1.6.0" +ESPRESSO_DEVICE_VERSION = "1.0.0" +ANDROIDX_JUNIT_VERSION = "1.2.0" +ANDROIDX_TRUTH_VERSION = "1.6.0" +ORCHESTRATOR_VERSION = "1.5.0" +SERVICES_VERSION = "1.5.0" # Full maven artifact strings for apks. SERVICES_APK_ARTIFACT = "androidx.test.services:test-services:%s" % SERVICES_VERSION diff --git a/gradle-tests/settings.gradle b/gradle-tests/settings.gradle index 5b44fb8df..1c2ef09c0 100644 --- a/gradle-tests/settings.gradle +++ b/gradle-tests/settings.gradle @@ -18,17 +18,17 @@ dependencyResolutionManagement { } versionCatalogs { libs { - library('core', 'androidx.test:core:1.6.0-rc01') - library('runner', 'androidx.test:runner:1.6.0-rc01') - library('ext.junit', 'androidx.test.ext:junit:1.2.0-rc01') - library('ext.truth', 'androidx.test.ext:truth:1.6.0-rc01') - library('espresso.accessibility', 'androidx.test.espresso:espresso-accessibility:3.6.0-rc01') - library('espresso.contrib', 'androidx.test.espresso:espresso-contrib:3.6.0-rc01') - library('espresso.core', 'androidx.test.espresso:espresso-core:3.6.0-rc01') - library('espresso.idlingresource', 'androidx.test.espresso:espresso-idling-resource:3.6.0-rc01') - library('espresso.intents', 'androidx.test.espresso:espresso-intents:3.6.0-rc01') - library('espresso.web', 'androidx.test.espresso:espresso-web:3.6.0-rc01') - library('orchestrator', 'androidx.test:orchestrator:1.5.0-rc01') + library('core', 'androidx.test:core:1.6.0') + library('runner', 'androidx.test:runner:1.6.0') + library('ext.junit', 'androidx.test.ext:junit:1.2.0') + library('ext.truth', 'androidx.test.ext:truth:1.6.0') + library('espresso.accessibility', 'androidx.test.espresso:espresso-accessibility:3.6.0') + library('espresso.contrib', 'androidx.test.espresso:espresso-contrib:3.6.0') + library('espresso.core', 'androidx.test.espresso:espresso-core:3.6.0') + library('espresso.idlingresource', 'androidx.test.espresso:espresso-idling-resource:3.6.0') + library('espresso.intents', 'androidx.test.espresso:espresso-intents:3.6.0') + library('espresso.web', 'androidx.test.espresso:espresso-web:3.6.0') + library('orchestrator', 'androidx.test:orchestrator:1.5.0') } }