Update version to 1.27.0-SNAPSHOT (#8466)
This commit is contained in:
parent
d4c5164809
commit
31148ec6ec
|
@ -2,6 +2,8 @@
|
||||||
|
|
||||||
## Unreleased
|
## Unreleased
|
||||||
|
|
||||||
|
## Version 1.26.0 (2023-05-10)
|
||||||
|
|
||||||
### Migration notes
|
### Migration notes
|
||||||
|
|
||||||
- `java.util.concurrent` executors instrumentation suppression key has changed from `executor` to `executors`
|
- `java.util.concurrent` executors instrumentation suppression key has changed from `executor` to `executors`
|
||||||
|
|
|
@ -14,7 +14,7 @@ buildscript {
|
||||||
dependencies {
|
dependencies {
|
||||||
classpath "com.diffplug.spotless:spotless-plugin-gradle:6.18.0"
|
classpath "com.diffplug.spotless:spotless-plugin-gradle:6.18.0"
|
||||||
classpath "gradle.plugin.com.github.johnrengelman:shadow:8.0.0"
|
classpath "gradle.plugin.com.github.johnrengelman:shadow:8.0.0"
|
||||||
classpath "io.opentelemetry.instrumentation:gradle-plugins:1.26.0-alpha-SNAPSHOT"
|
classpath "io.opentelemetry.instrumentation:gradle-plugins:1.27.0-alpha-SNAPSHOT"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -30,8 +30,8 @@ subprojects {
|
||||||
opentelemetrySdk : "1.26.0",
|
opentelemetrySdk : "1.26.0",
|
||||||
|
|
||||||
// these lines are managed by .github/scripts/update-version.sh
|
// these lines are managed by .github/scripts/update-version.sh
|
||||||
opentelemetryJavaagent : "1.26.0-SNAPSHOT",
|
opentelemetryJavaagent : "1.27.0-SNAPSHOT",
|
||||||
opentelemetryJavaagentAlpha: "1.26.0-alpha-SNAPSHOT",
|
opentelemetryJavaagentAlpha: "1.27.0-alpha-SNAPSHOT",
|
||||||
|
|
||||||
bytebuddy : "1.14.4",
|
bytebuddy : "1.14.4",
|
||||||
autoservice : "1.0.1",
|
autoservice : "1.0.1",
|
||||||
|
|
|
@ -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.18.0"
|
id "com.diffplug.spotless" version "6.18.0"
|
||||||
|
|
||||||
id "io.opentelemetry.instrumentation.muzzle-generation" version "1.26.0-alpha-SNAPSHOT"
|
id "io.opentelemetry.instrumentation.muzzle-generation" version "1.27.0-alpha-SNAPSHOT"
|
||||||
id "io.opentelemetry.instrumentation.muzzle-check" version "1.26.0-alpha-SNAPSHOT"
|
id "io.opentelemetry.instrumentation.muzzle-check" version "1.27.0-alpha-SNAPSHOT"
|
||||||
}
|
}
|
||||||
|
|
||||||
group 'io.opentelemetry.example'
|
group 'io.opentelemetry.example'
|
||||||
|
@ -26,8 +26,8 @@ ext {
|
||||||
opentelemetrySdk : "1.26.0",
|
opentelemetrySdk : "1.26.0",
|
||||||
|
|
||||||
// these lines are managed by .github/scripts/update-version.sh
|
// these lines are managed by .github/scripts/update-version.sh
|
||||||
opentelemetryJavaagent : "1.26.0-SNAPSHOT",
|
opentelemetryJavaagent : "1.27.0-SNAPSHOT",
|
||||||
opentelemetryJavaagentAlpha: "1.26.0-alpha-SNAPSHOT",
|
opentelemetryJavaagentAlpha: "1.27.0-alpha-SNAPSHOT",
|
||||||
|
|
||||||
junit : "5.9.3"
|
junit : "5.9.3"
|
||||||
]
|
]
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
val stableVersion = "1.26.0-SNAPSHOT"
|
val stableVersion = "1.27.0-SNAPSHOT"
|
||||||
val alphaVersion = "1.26.0-alpha-SNAPSHOT"
|
val alphaVersion = "1.27.0-alpha-SNAPSHOT"
|
||||||
|
|
||||||
allprojects {
|
allprojects {
|
||||||
if (findProperty("otel.stable") != "true") {
|
if (findProperty("otel.stable") != "true") {
|
||||||
|
|
Loading…
Reference in New Issue