Skip to content

Commit

Permalink
fix versions (#573)
Browse files Browse the repository at this point in the history
  • Loading branch information
breedx-splk authored Jun 9, 2023
1 parent d3d6bd4 commit 918f65d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
7 changes: 3 additions & 4 deletions opentelemetry-android-instrumentation/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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")
Expand Down
2 changes: 1 addition & 1 deletion splunk-otel-android-volley/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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")
...
}
```
Expand Down

0 comments on commit 918f65d

Please sign in to comment.