Skip to content

Commit a7148e4

Browse files
authored
Update after 1.3.0 release (#720)
* update after 1.3.0 release * prepare for 1.3.1 patch * update badge * add note about badge
1 parent 5daaa14 commit a7148e4

File tree

5 files changed

+25
-5
lines changed

5 files changed

+25
-5
lines changed

CHANGELOG.md

+19
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,25 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
99

1010
* tbd
1111

12+
## Version 1.3.1 - 2023-12-14
13+
14+
The previous release was mistakenly built against an OpenTelemetry `SNAPSHOT` build.
15+
This remedies that and compiles against the 1.32.0 non-SNAPSHOT bom.
16+
17+
* Compile against OpenTelemetry Java Instrumentation 1.32.0 (no SNAPSHOT).
18+
19+
## Version 1.3.0 - 2023-12-13
20+
21+
This is a standard release following the regular upstream `opentelemetry-android` release.
22+
This version is succeeded by a patch release: Users should use 1.3.1 instead of 1.3.0.
23+
24+
* Update to use upstream `opentelemetry-android` 0.3.0 (#714)
25+
* Reduce unnecessary attempts at directory deletion for disk buffered telemetry (#683)
26+
* Change session sampling strategy to be consistent with other splunk RUM implementations (#698)
27+
* Global attributes and screen attributes are now handled by upstream (#710)
28+
* Network monitoring and network attributes appender now handle by upstream (#713)
29+
* Fix broken url targets in sample app (#715)
30+
1231
## Version 1.2.0 - 2023-10-25
1332

1433
This is the first version of `splunk-otel-android` that is based on the upstream version of

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212

1313
<p align="center">
1414
<img alt="Stable" src="https://img.shields.io/badge/status-stable-informational?style=for-the-badge">
15-
<a href="https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/tag/v1.21.0">
16-
<img alt="OpenTelemetry Instrumentation for Java Version" src="https://img.shields.io/badge/otel-1.21.0-blueviolet?style=for-the-badge">
15+
<a href="https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/tag/v1.32.0">
16+
<img alt="OpenTelemetry Instrumentation for Java Version" src="https://img.shields.io/badge/otel-1.32.0-blueviolet?style=for-the-badge">
1717
</a>
1818
<a href="https://github.com/signalfx/gdi-specification/releases/tag/v1.4.0">
1919
<img alt="Splunk GDI specification" src="https://img.shields.io/badge/GDI-1.4.0-blueviolet?style=for-the-badge">

RELEASING.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ This is the process to use to do a release:
2525

2626
6) Create a PR to update the version in the `gradle.properties` to the next development
2727
version. This PR can and probably should also include updating any documentation (CHANGELOG.md,
28-
README.md, etc) that mentions the previous version.
28+
README.md, etc) that mentions the previous version. Make sure the badget in the top README.md
29+
reflects the accurate upstream otel version.
2930

3031
7) Once this PR is merged, create a release in Github that points at the newly created version,
3132
and make sure to provide release notes that at least mirror the contents of the CHANGELOG.md

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
1717
android.useAndroidX=true
1818

1919
# generate the BuildConfig class that contains the app version
20-
version=1.3.0
20+
version=1.3.1
2121
group=com.splunk

splunk-otel-android/build.gradle.kts

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

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

0 commit comments

Comments
 (0)