Update version to 2.2.0-SNAPSHOT (#10566)

This commit is contained in:
OpenTelemetry Bot 2024-02-16 03:26:07 +01:00 committed by GitHub
parent a9c3caed4d
commit 7306179279
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 11 additions and 9 deletions

View File

@ -2,6 +2,8 @@
## Unreleased ## Unreleased
## Version 2.1.0 (2024-02-15)
### Migration notes ### Migration notes
- Deprecated config properties have been removed in favor of the new names: - Deprecated config properties have been removed in favor of the new names:

View File

@ -14,7 +14,7 @@ buildscript {
dependencies { dependencies {
classpath "com.diffplug.spotless:spotless-plugin-gradle:6.25.0" classpath "com.diffplug.spotless:spotless-plugin-gradle:6.25.0"
classpath "com.github.johnrengelman:shadow:8.1.1" classpath "com.github.johnrengelman:shadow:8.1.1"
classpath "io.opentelemetry.instrumentation:gradle-plugins:2.1.0-alpha-SNAPSHOT" classpath "io.opentelemetry.instrumentation:gradle-plugins:2.2.0-alpha-SNAPSHOT"
} }
} }
@ -30,8 +30,8 @@ subprojects {
opentelemetrySdk : "1.35.0", opentelemetrySdk : "1.35.0",
// these lines are managed by .github/scripts/update-version.sh // these lines are managed by .github/scripts/update-version.sh
opentelemetryJavaagent : "2.1.0-SNAPSHOT", opentelemetryJavaagent : "2.2.0-SNAPSHOT",
opentelemetryJavaagentAlpha: "2.1.0-alpha-SNAPSHOT", opentelemetryJavaagentAlpha: "2.2.0-alpha-SNAPSHOT",
autoservice : "1.1.1", autoservice : "1.1.1",
junit : "5.10.2" junit : "5.10.2"

View File

@ -13,8 +13,8 @@ plugins {
id "com.github.johnrengelman.shadow" version "8.1.1" id "com.github.johnrengelman.shadow" version "8.1.1"
id "com.diffplug.spotless" version "6.25.0" id "com.diffplug.spotless" version "6.25.0"
id "io.opentelemetry.instrumentation.muzzle-generation" version "2.1.0-alpha-SNAPSHOT" id "io.opentelemetry.instrumentation.muzzle-generation" version "2.2.0-alpha-SNAPSHOT"
id "io.opentelemetry.instrumentation.muzzle-check" version "2.1.0-alpha-SNAPSHOT" id "io.opentelemetry.instrumentation.muzzle-check" version "2.2.0-alpha-SNAPSHOT"
} }
group 'io.opentelemetry.example' group 'io.opentelemetry.example'
@ -26,8 +26,8 @@ ext {
opentelemetrySdk : "1.35.0", opentelemetrySdk : "1.35.0",
// these lines are managed by .github/scripts/update-version.sh // these lines are managed by .github/scripts/update-version.sh
opentelemetryJavaagent : "2.1.0-SNAPSHOT", opentelemetryJavaagent : "2.2.0-SNAPSHOT",
opentelemetryJavaagentAlpha: "2.1.0-alpha-SNAPSHOT", opentelemetryJavaagentAlpha: "2.2.0-alpha-SNAPSHOT",
junit : "5.10.2" junit : "5.10.2"
] ]

View File

@ -1,5 +1,5 @@
val stableVersion = "2.1.0-SNAPSHOT" val stableVersion = "2.2.0-SNAPSHOT"
val alphaVersion = "2.1.0-alpha-SNAPSHOT" val alphaVersion = "2.2.0-alpha-SNAPSHOT"
allprojects { allprojects {
if (findProperty("otel.stable") != "true") { if (findProperty("otel.stable") != "true") {