Skip to content

Commit

Permalink
v0.15.0 pre-release changes (#287)
Browse files Browse the repository at this point in the history
* v0.15.0 pre-release changes

* Add PR number
  • Loading branch information
Mateusz Rzeszutek authored May 18, 2022
1 parent c705444 commit 4cb44ea
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 11 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Version 0.15.0

* Updated to OpenTelemetry Java v1.14.0 (#287)

## Version 0.14.0

* Disk caching exporter now retries sending files (#260)
Expand Down
3 changes: 1 addition & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@ buildscript {
mavenCentral()
}
dependencies {
// keep this version in sync with /buildSrc/build.gradle.kts
classpath("com.android.tools.build:gradle:7.2.0")
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}

Expand Down
4 changes: 3 additions & 1 deletion buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ repositories {
}

dependencies {
implementation("com.android.tools.build:gradle:7.1.2")
// keep this version in sync with /build.gradle.kts
implementation("com.android.tools.build:gradle:7.2.0")

implementation("com.diffplug.spotless:spotless-plugin-gradle:6.4.2")
}
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionSha256Sum=8cc27038d5dbd815759851ba53e70cf62e481b87494cc97cfd97982ada5ba634
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip
distributionSha256Sum=29e49b10984e585d8118b7d0bc452f944e386458df27371b49b4ac1dec4b7fda
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
6 changes: 3 additions & 3 deletions splunk-otel-android-volley/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -48,14 +48,14 @@ dependencies {

implementation(project(":splunk-otel-android"))

api(platform("io.opentelemetry:opentelemetry-bom:1.13.0"))
api(platform("io.opentelemetry:opentelemetry-bom:1.14.0"))
api("io.opentelemetry:opentelemetry-api")
implementation("io.opentelemetry:opentelemetry-sdk")

implementation(platform("io.opentelemetry:opentelemetry-bom-alpha:1.13.0-alpha"))
implementation(platform("io.opentelemetry:opentelemetry-bom-alpha:1.14.0-alpha"))
implementation("io.opentelemetry:opentelemetry-semconv")

implementation(platform("io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:1.13.1-alpha"))
implementation(platform("io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:1.14.0-alpha"))
implementation("io.opentelemetry.instrumentation:opentelemetry-instrumentation-api")
implementation("io.opentelemetry.instrumentation:opentelemetry-instrumentation-api-semconv")

Expand Down
6 changes: 3 additions & 3 deletions splunk-otel-android/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,15 @@ dependencies {
implementation("androidx.core:core:1.3.1")
implementation("androidx.navigation:navigation-fragment:2.4.2")

api(platform("io.opentelemetry:opentelemetry-bom:1.13.0"))
api(platform("io.opentelemetry:opentelemetry-bom:1.14.0"))
implementation("io.opentelemetry:opentelemetry-sdk")
implementation("io.opentelemetry:opentelemetry-exporter-zipkin")
implementation("io.zipkin.reporter2:zipkin-sender-okhttp3")
implementation("io.opentelemetry:opentelemetry-exporter-logging")

implementation(platform("io.opentelemetry:opentelemetry-bom-alpha:1.13.0-alpha"))
implementation(platform("io.opentelemetry:opentelemetry-bom-alpha:1.14.0-alpha"))
implementation("io.opentelemetry:opentelemetry-semconv")
implementation("io.opentelemetry.instrumentation:opentelemetry-okhttp-3.0:1.13.1-alpha")
implementation("io.opentelemetry.instrumentation:opentelemetry-okhttp-3.0:1.14.0-alpha")

api("io.opentelemetry:opentelemetry-api")
api("com.squareup.okhttp3:okhttp:4.9.3")
Expand Down

0 comments on commit 4cb44ea

Please sign in to comment.