Skip to content

Commit c8502e6

Browse files
authored
Post 1.2.0 release changes (#681)
* post release changes * udpate versions * spotless * update dependencies and link to renovate dashboard
1 parent c72ba65 commit c8502e6

File tree

6 files changed

+16
-11
lines changed

6 files changed

+16
-11
lines changed

CHANGELOG.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project
66
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## Unreleased
8+
### Unreleased
9+
10+
* tbd
11+
12+
## Version 1.2.0 - 2023-10-25
913

1014
This is the first version of `splunk-otel-android` that is based on the upstream version of
1115
`opentelemetry-android`. Please note that this requires an additional project dependency,

SECURITY.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,11 @@ https://www.splunk.com/en_us/product-security/report.html).
1111
This project relies on a variety of external dependencies.
1212
These dependencies are monitored by
1313
[Renovate](https://github.com/apps/renovate).
14-
Renovate checks for Dependencies are [checked
15-
daily](https://github.com/signalfx/splunk-otel-java/blob/main/.github/dependabot.yml)
16-
and associated pull requests are opened automatically. Upgrading to the [latest
17-
release](https://github.com/signalfx/splunk-otel-android/releases)
14+
Renovate regularly checks for dependencies and updates
15+
[the Dependency Dashboard](https://github.com/signalfx/splunk-otel-android/issues/667)
16+
when newer versions are available. It also opens associated pull requests automatically.
17+
18+
Upgrading to the [latest release](https://github.com/signalfx/splunk-otel-android/releases)
1819
is recommended to ensure you have the latest security updates. If a security
1920
vulnerability is detected for a dependency of this project then either:
2021

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ android.useAndroidX=true
1919
# generate the BuildConfig class that contains the app version
2020
android.defaults.buildfeatures.buildconfig=true
2121

22-
version=1.2.0
22+
version=1.3.0
2323
group=com.splunk

sample-app/build.gradle.kts

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,13 @@ android {
5151
}
5252
}
5353

54-
val otelVersion = "1.31.0"
54+
val otelVersion = "1.32.0-SNAPSHOT"
5555
val otelAlphaVersion = otelVersion.replaceFirst("(-SNAPSHOT)?$".toRegex(), "-alpha$1")
5656

5757
dependencies {
5858
api(platform("io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:$otelAlphaVersion"))
5959

60-
implementation("io.opentelemetry.android:instrumentation:0.2.0-alpha")
60+
implementation("io.opentelemetry.android:instrumentation:0.3.0-alpha-SNAPSHOT")
6161
implementation("androidx.legacy:legacy-support-v4:1.0.0")
6262
coreLibraryDesugaring("com.android.tools:desugar_jdk_libs:2.0.3")
6363

splunk-otel-android-volley/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ android {
4343
}
4444
}
4545

46-
val otelVersion = "1.31.0"
46+
val otelVersion = "1.32.0-SNAPSHOT"
4747
val otelAlphaVersion = otelVersion.replaceFirst("(-SNAPSHOT)?$".toRegex(), "-alpha$1")
4848
val otelSemconvVersion = "1.21.0-alpha"
4949

splunk-otel-android/build.gradle.kts

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,13 @@ android {
3939
}
4040
}
4141

42-
val otelVersion = "1.31.0"
42+
val otelVersion = "1.32.0-SNAPSHOT"
4343
val otelAlphaVersion = otelVersion.replaceFirst("(-SNAPSHOT)?$".toRegex(), "-alpha$1")
4444
val otelSemconvVersion = "1.21.0-alpha"
4545

4646
dependencies {
4747
api(platform("io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:$otelAlphaVersion"))
48-
implementation("io.opentelemetry.android:instrumentation:0.2.0-alpha")
48+
implementation("io.opentelemetry.android:instrumentation:0.3.0-alpha-SNAPSHOT")
4949

5050
implementation(platform("org.jetbrains.kotlin:kotlin-bom:1.9.10"))
5151
implementation("androidx.appcompat:appcompat:1.6.1")

0 commit comments

Comments
 (0)