diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f27982b7c26..86c63dbfa96b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## Version 2.13.0 (2025-02-10) ### Migration notes diff --git a/README.md b/README.md index 316ffe6a7b10..4d3da1b2209c 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,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.13.0/opentelemetry-javaagent.jar). This package includes the instrumentation agent as well as instrumentations for all supported libraries and all available data exporters. diff --git a/docs/apidiffs/current_vs_latest/opentelemetry-instrumentation-annotations.txt b/docs/apidiffs/current_vs_latest/opentelemetry-instrumentation-annotations.txt index 8e89ef653743..e710c8bd4f2a 100644 --- a/docs/apidiffs/current_vs_latest/opentelemetry-instrumentation-annotations.txt +++ b/docs/apidiffs/current_vs_latest/opentelemetry-instrumentation-annotations.txt @@ -1,2 +1,2 @@ -Comparing source compatibility of opentelemetry-instrumentation-annotations-2.13.0-SNAPSHOT.jar against opentelemetry-instrumentation-annotations-2.12.0.jar +Comparing source compatibility of opentelemetry-instrumentation-annotations-2.13.0.jar against opentelemetry-instrumentation-annotations-2.12.0.jar No changes. \ No newline at end of file diff --git a/docs/apidiffs/current_vs_latest/opentelemetry-instrumentation-api.txt b/docs/apidiffs/current_vs_latest/opentelemetry-instrumentation-api.txt index bcf7237fcebe..c3617900ea5c 100644 --- a/docs/apidiffs/current_vs_latest/opentelemetry-instrumentation-api.txt +++ b/docs/apidiffs/current_vs_latest/opentelemetry-instrumentation-api.txt @@ -1,4 +1,4 @@ -Comparing source compatibility of opentelemetry-instrumentation-api-2.13.0-SNAPSHOT.jar against opentelemetry-instrumentation-api-2.12.0.jar +Comparing source compatibility of opentelemetry-instrumentation-api-2.13.0.jar against opentelemetry-instrumentation-api-2.12.0.jar +++ NEW CLASS: PUBLIC(+) FINAL(+) io.opentelemetry.instrumentation.api.semconv.util.SpanNames (not serializable) +++ CLASS FILE FORMAT VERSION: 52.0 <- n.a. +++ NEW SUPERCLASS: java.lang.Object diff --git a/docs/apidiffs/current_vs_latest/opentelemetry-spring-boot-autoconfigure.txt b/docs/apidiffs/current_vs_latest/opentelemetry-spring-boot-autoconfigure.txt index 3e8c3c0d4eff..45607e0db3fb 100644 --- a/docs/apidiffs/current_vs_latest/opentelemetry-spring-boot-autoconfigure.txt +++ b/docs/apidiffs/current_vs_latest/opentelemetry-spring-boot-autoconfigure.txt @@ -1,2 +1,2 @@ -Comparing source compatibility of opentelemetry-spring-boot-autoconfigure-2.13.0-SNAPSHOT.jar against opentelemetry-spring-boot-autoconfigure-2.12.0.jar +Comparing source compatibility of opentelemetry-spring-boot-autoconfigure-2.13.0.jar against opentelemetry-spring-boot-autoconfigure-2.12.0.jar No changes. \ No newline at end of file diff --git a/docs/apidiffs/current_vs_latest/opentelemetry-spring-boot-starter.txt b/docs/apidiffs/current_vs_latest/opentelemetry-spring-boot-starter.txt index 3a33f61d61b1..0a7373a631f8 100644 --- a/docs/apidiffs/current_vs_latest/opentelemetry-spring-boot-starter.txt +++ b/docs/apidiffs/current_vs_latest/opentelemetry-spring-boot-starter.txt @@ -1,2 +1,2 @@ -Comparing source compatibility of opentelemetry-spring-boot-starter-2.13.0-SNAPSHOT.jar against opentelemetry-spring-boot-starter-2.12.0.jar +Comparing source compatibility of opentelemetry-spring-boot-starter-2.13.0.jar against opentelemetry-spring-boot-starter-2.12.0.jar No changes. \ No newline at end of file diff --git a/examples/distro/build.gradle b/examples/distro/build.gradle index c7be9abb0611..f0383a588601 100644 --- a/examples/distro/build.gradle +++ b/examples/distro/build.gradle @@ -14,7 +14,7 @@ buildscript { dependencies { classpath "com.diffplug.spotless:spotless-plugin-gradle:7.0.2" classpath "com.gradleup.shadow:shadow-gradle-plugin:8.3.6" - classpath "io.opentelemetry.instrumentation:gradle-plugins:2.13.0-alpha-SNAPSHOT" + classpath "io.opentelemetry.instrumentation:gradle-plugins:2.13.0-alpha" } } @@ -30,8 +30,8 @@ subprojects { opentelemetrySdk : "1.46.0", // these lines are managed by .github/scripts/update-version.sh - opentelemetryJavaagent : "2.13.0-SNAPSHOT", - opentelemetryJavaagentAlpha: "2.13.0-alpha-SNAPSHOT", + opentelemetryJavaagent : "2.13.0", + opentelemetryJavaagentAlpha: "2.13.0-alpha", autoservice : "1.1.1", junit : "5.11.4" diff --git a/examples/extension/build.gradle b/examples/extension/build.gradle index aca47d8f44e8..365b16bfa21a 100644 --- a/examples/extension/build.gradle +++ b/examples/extension/build.gradle @@ -13,8 +13,8 @@ plugins { id "com.gradleup.shadow" version "8.3.6" id "com.diffplug.spotless" version "7.0.2" - id "io.opentelemetry.instrumentation.muzzle-generation" version "2.13.0-alpha-SNAPSHOT" - id "io.opentelemetry.instrumentation.muzzle-check" version "2.13.0-alpha-SNAPSHOT" + id "io.opentelemetry.instrumentation.muzzle-generation" version "2.13.0-alpha" + id "io.opentelemetry.instrumentation.muzzle-check" version "2.13.0-alpha" } group 'io.opentelemetry.example' @@ -26,8 +26,8 @@ ext { opentelemetrySdk : "1.46.0", // these lines are managed by .github/scripts/update-version.sh - opentelemetryJavaagent : "2.13.0-SNAPSHOT", - opentelemetryJavaagentAlpha: "2.13.0-alpha-SNAPSHOT", + opentelemetryJavaagent : "2.13.0", + opentelemetryJavaagentAlpha: "2.13.0-alpha", junit : "5.11.4" ] diff --git a/version.gradle.kts b/version.gradle.kts index 902bc1d52d59..f04b37391fb0 100644 --- a/version.gradle.kts +++ b/version.gradle.kts @@ -1,5 +1,5 @@ -val stableVersion = "2.13.0-SNAPSHOT" -val alphaVersion = "2.13.0-alpha-SNAPSHOT" +val stableVersion = "2.13.0" +val alphaVersion = "2.13.0-alpha" allprojects { if (findProperty("otel.stable") != "true") {