Skip to content

Commit a04a7a8

Browse files
authored
Update version to 2.15.0-SNAPSHOT (#13519)
Co-authored-by: otelbot <[email protected]>
1 parent c284f6c commit a04a7a8

8 files changed

+15
-13
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Unreleased
44

5+
## Version 2.14.0 (2025-03-13)
6+
57
### Migration notes
68

79
- The `java.net.http.HttpClient` instrumentation package
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Comparing source compatibility of opentelemetry-instrumentation-annotations-2.14.0-SNAPSHOT.jar against opentelemetry-instrumentation-annotations-2.13.3.jar
1+
Comparing source compatibility of opentelemetry-instrumentation-annotations-2.15.0-SNAPSHOT.jar against opentelemetry-instrumentation-annotations-2.13.3.jar
22
**** MODIFIED ANNOTATION: PUBLIC ABSTRACT io.opentelemetry.instrumentation.annotations.WithSpan (not serializable)
33
=== CLASS FILE FORMAT VERSION: 52.0 <- 52.0
44
+++* NEW METHOD: PUBLIC(+) ABSTRACT(+) boolean inheritContext()
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Comparing source compatibility of opentelemetry-instrumentation-api-2.14.0-SNAPSHOT.jar against opentelemetry-instrumentation-api-2.13.3.jar
1+
Comparing source compatibility of opentelemetry-instrumentation-api-2.15.0-SNAPSHOT.jar against opentelemetry-instrumentation-api-2.13.3.jar
22
No changes.
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Comparing source compatibility of opentelemetry-spring-boot-autoconfigure-2.14.0-SNAPSHOT.jar against opentelemetry-spring-boot-autoconfigure-2.13.3.jar
1+
Comparing source compatibility of opentelemetry-spring-boot-autoconfigure-2.15.0-SNAPSHOT.jar against opentelemetry-spring-boot-autoconfigure-2.13.3.jar
22
No changes.
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Comparing source compatibility of opentelemetry-spring-boot-starter-2.14.0-SNAPSHOT.jar against opentelemetry-spring-boot-starter-2.13.3.jar
1+
Comparing source compatibility of opentelemetry-spring-boot-starter-2.15.0-SNAPSHOT.jar against opentelemetry-spring-boot-starter-2.13.3.jar
22
No changes.

examples/distro/build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ buildscript {
1414
dependencies {
1515
classpath "com.diffplug.spotless:spotless-plugin-gradle:7.0.2"
1616
classpath "com.gradleup.shadow:shadow-gradle-plugin:8.3.6"
17-
classpath "io.opentelemetry.instrumentation:gradle-plugins:2.14.0-alpha-SNAPSHOT"
17+
classpath "io.opentelemetry.instrumentation:gradle-plugins:2.15.0-alpha-SNAPSHOT"
1818
}
1919
}
2020

@@ -30,8 +30,8 @@ subprojects {
3030
opentelemetrySdk : "1.48.0",
3131

3232
// these lines are managed by .github/scripts/update-version.sh
33-
opentelemetryJavaagent : "2.14.0-SNAPSHOT",
34-
opentelemetryJavaagentAlpha: "2.14.0-alpha-SNAPSHOT",
33+
opentelemetryJavaagent : "2.15.0-SNAPSHOT",
34+
opentelemetryJavaagentAlpha: "2.15.0-alpha-SNAPSHOT",
3535

3636
autoservice : "1.1.1"
3737
]

examples/extension/build.gradle

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ plugins {
1313
id "com.gradleup.shadow" version "8.3.6"
1414
id "com.diffplug.spotless" version "7.0.2"
1515

16-
id "io.opentelemetry.instrumentation.muzzle-generation" version "2.14.0-alpha-SNAPSHOT"
17-
id "io.opentelemetry.instrumentation.muzzle-check" version "2.14.0-alpha-SNAPSHOT"
16+
id "io.opentelemetry.instrumentation.muzzle-generation" version "2.15.0-alpha-SNAPSHOT"
17+
id "io.opentelemetry.instrumentation.muzzle-check" version "2.15.0-alpha-SNAPSHOT"
1818
}
1919

2020
group 'io.opentelemetry.example'
@@ -26,8 +26,8 @@ ext {
2626
opentelemetrySdk : "1.48.0",
2727

2828
// these lines are managed by .github/scripts/update-version.sh
29-
opentelemetryJavaagent : "2.14.0-SNAPSHOT",
30-
opentelemetryJavaagentAlpha: "2.14.0-alpha-SNAPSHOT"
29+
opentelemetryJavaagent : "2.15.0-SNAPSHOT",
30+
opentelemetryJavaagentAlpha: "2.15.0-alpha-SNAPSHOT"
3131
]
3232

3333
deps = [

version.gradle.kts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
val stableVersion = "2.14.0-SNAPSHOT"
2-
val alphaVersion = "2.14.0-alpha-SNAPSHOT"
1+
val stableVersion = "2.15.0-SNAPSHOT"
2+
val alphaVersion = "2.15.0-alpha-SNAPSHOT"
33

44
allprojects {
55
if (findProperty("otel.stable") != "true") {

0 commit comments

Comments
 (0)