Skip to content

Commit 6021bce

Browse files
[release/v2.6.x] Prepare release 2.6.0 (#11838)
Co-authored-by: Trask Stalnaker <[email protected]>
1 parent 2ea4e61 commit 6021bce

9 files changed

+15
-15
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## Unreleased
3+
## Version 2.6.0 (2024-07-16)
44

55
The Spring Boot Starter (`opentelemetry-spring-boot-starter`) is now stable.
66

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ If you are looking for documentation on using those.
6161
## Getting Started
6262

6363
Download
64-
the [latest version](https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/latest/download/opentelemetry-javaagent.jar).
64+
the [latest version](https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/download/v2.6.0/opentelemetry-javaagent.jar).
6565

6666
This package includes the instrumentation agent as well as
6767
instrumentations for all supported libraries and all available data exporters.
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Comparing source compatibility of opentelemetry-instrumentation-annotations-2.6.0-SNAPSHOT.jar against opentelemetry-instrumentation-annotations-2.5.0.jar
1+
Comparing source compatibility of opentelemetry-instrumentation-annotations-2.6.0.jar against opentelemetry-instrumentation-annotations-2.5.0.jar
22
No changes.
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Comparing source compatibility of opentelemetry-instrumentation-api-2.6.0-SNAPSHOT.jar against opentelemetry-instrumentation-api-2.5.0.jar
1+
Comparing source compatibility of opentelemetry-instrumentation-api-2.6.0.jar against opentelemetry-instrumentation-api-2.5.0.jar
22
No changes.

docs/apidiffs/current_vs_latest/opentelemetry-spring-boot-autoconfigure.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Comparing source compatibility of opentelemetry-spring-boot-autoconfigure-2.6.0-SNAPSHOT.jar against
1+
Comparing source compatibility of opentelemetry-spring-boot-autoconfigure-2.6.0.jar against
22
+++ NEW CLASS: PUBLIC(+) io.opentelemetry.instrumentation.spring.autoconfigure.OpenTelemetryAutoConfiguration (not serializable)
33
+++ CLASS FILE FORMAT VERSION: 52.0 <- n.a.
44
+++ NEW SUPERCLASS: java.lang.Object
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Comparing source compatibility of opentelemetry-spring-boot-starter-2.6.0-SNAPSHOT.jar against
1+
Comparing source compatibility of opentelemetry-spring-boot-starter-2.6.0.jar against
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:6.25.0"
1616
classpath "com.github.johnrengelman:shadow:8.1.1"
17-
classpath "io.opentelemetry.instrumentation:gradle-plugins:2.6.0-alpha-SNAPSHOT"
17+
classpath "io.opentelemetry.instrumentation:gradle-plugins:2.6.0-alpha"
1818
}
1919
}
2020

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

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

3636
autoservice : "1.1.1",
3737
junit : "5.10.3"

examples/extension/build.gradle

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ plugins {
1313
id "com.github.johnrengelman.shadow" version "8.1.1"
1414
id "com.diffplug.spotless" version "6.25.0"
1515

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

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

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

3232
junit : "5.10.3"
3333
]

version.gradle.kts

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

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

0 commit comments

Comments
 (0)