Skip to content

Commit

Permalink
[release/v2.6.x] Prepare release 2.6.0 (#11838)
Browse files Browse the repository at this point in the history
Co-authored-by: Trask Stalnaker <[email protected]>
  • Loading branch information
opentelemetrybot and trask committed Jul 16, 2024
1 parent 2ea4e61 commit 6021bce
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## Unreleased
## Version 2.6.0 (2024-07-16)

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

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ If you are looking for documentation on using those.
## Getting Started

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

This package includes the instrumentation agent as well as
instrumentations for all supported libraries and all available data exporters.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
Comparing source compatibility of opentelemetry-instrumentation-annotations-2.6.0-SNAPSHOT.jar against opentelemetry-instrumentation-annotations-2.5.0.jar
Comparing source compatibility of opentelemetry-instrumentation-annotations-2.6.0.jar against opentelemetry-instrumentation-annotations-2.5.0.jar
No changes.
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
Comparing source compatibility of opentelemetry-instrumentation-api-2.6.0-SNAPSHOT.jar against opentelemetry-instrumentation-api-2.5.0.jar
Comparing source compatibility of opentelemetry-instrumentation-api-2.6.0.jar against opentelemetry-instrumentation-api-2.5.0.jar
No changes.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Comparing source compatibility of opentelemetry-spring-boot-autoconfigure-2.6.0-SNAPSHOT.jar against
Comparing source compatibility of opentelemetry-spring-boot-autoconfigure-2.6.0.jar against
+++ NEW CLASS: PUBLIC(+) io.opentelemetry.instrumentation.spring.autoconfigure.OpenTelemetryAutoConfiguration (not serializable)
+++ CLASS FILE FORMAT VERSION: 52.0 <- n.a.
+++ NEW SUPERCLASS: java.lang.Object
Expand Down
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
Comparing source compatibility of opentelemetry-spring-boot-starter-2.6.0-SNAPSHOT.jar against
Comparing source compatibility of opentelemetry-spring-boot-starter-2.6.0.jar against
No changes.
6 changes: 3 additions & 3 deletions examples/distro/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ buildscript {
dependencies {
classpath "com.diffplug.spotless:spotless-plugin-gradle:6.25.0"
classpath "com.github.johnrengelman:shadow:8.1.1"
classpath "io.opentelemetry.instrumentation:gradle-plugins:2.6.0-alpha-SNAPSHOT"
classpath "io.opentelemetry.instrumentation:gradle-plugins:2.6.0-alpha"
}
}

Expand All @@ -30,8 +30,8 @@ subprojects {
opentelemetrySdk : "1.40.0",

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

autoservice : "1.1.1",
junit : "5.10.3"
Expand Down
8 changes: 4 additions & 4 deletions examples/extension/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ plugins {
id "com.github.johnrengelman.shadow" version "8.1.1"
id "com.diffplug.spotless" version "6.25.0"

id "io.opentelemetry.instrumentation.muzzle-generation" version "2.6.0-alpha-SNAPSHOT"
id "io.opentelemetry.instrumentation.muzzle-check" version "2.6.0-alpha-SNAPSHOT"
id "io.opentelemetry.instrumentation.muzzle-generation" version "2.6.0-alpha"
id "io.opentelemetry.instrumentation.muzzle-check" version "2.6.0-alpha"
}

group 'io.opentelemetry.example'
Expand All @@ -26,8 +26,8 @@ ext {
opentelemetrySdk : "1.40.0",

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

junit : "5.10.3"
]
Expand Down
4 changes: 2 additions & 2 deletions version.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
val stableVersion = "2.6.0-SNAPSHOT"
val alphaVersion = "2.6.0-alpha-SNAPSHOT"
val stableVersion = "2.6.0"
val alphaVersion = "2.6.0-alpha"

allprojects {
if (findProperty("otel.stable") != "true") {
Expand Down

0 comments on commit 6021bce

Please sign in to comment.