diff --git a/opentelemetry-android-instrumentation/build.gradle.kts b/opentelemetry-android-instrumentation/build.gradle.kts index 787144ea2..01e3ac589 100644 --- a/opentelemetry-android-instrumentation/build.gradle.kts +++ b/opentelemetry-android-instrumentation/build.gradle.kts @@ -5,7 +5,7 @@ plugins { } // This submodule is alpha and is not yet intended to be used by itself -version = "${project.version}-alpha" +version = project.version.toString().replaceFirst("(-SNAPSHOT)?$".toRegex(), "-alpha$1") android { namespace = "opentelemetry.rum.instrumentation" @@ -42,10 +42,9 @@ android { } } -val otelVersion = "1.25.0" +val otelVersion = "1.26.0" val otelAlphaVersion = "$otelVersion-alpha" -val otelInstrumentationVersion = "1.25.0-SNAPSHOT" -val otelInstrumentationAlphaVersion = "1.25.0-alpha-SNAPSHOT" +val otelInstrumentationVersion = "1.26.0" dependencies { implementation("androidx.appcompat:appcompat:1.6.1") diff --git a/splunk-otel-android-volley/README.md b/splunk-otel-android-volley/README.md index 3a571282f..2e835ab38 100644 --- a/splunk-otel-android-volley/README.md +++ b/splunk-otel-android-volley/README.md @@ -16,7 +16,7 @@ you will also need to add the `splunk-otel-android-volley` dependency to your `b ```gradle dependencies { ... - implementation("com.splunk:splunk-otel-android-volley:1.0.0-rc.3") + implementation("com.splunk:splunk-otel-android-volley:1.0.0") ... } ```