diff --git a/README.md b/README.md index a814ccd37d..6c63b8e95f 100644 --- a/README.md +++ b/README.md @@ -31,15 +31,15 @@ repositories { } dependencies { - compile "io.projectreactor:reactor-core:3.7.0-M5" - testCompile "io.projectreactor:reactor-test:3.7.0-M5" + compile "io.projectreactor:reactor-core:3.7.0-M6" + testCompile "io.projectreactor:reactor-test:3.7.0-M6" // Alternatively, use the following for latest snapshot artifacts in this line // compile "io.projectreactor:reactor-core:3.7.0-SNAPSHOT" // testCompile "io.projectreactor:reactor-test:3.7.0-SNAPSHOT" // Optionally, use `reactor-tools` to help debugging reactor code - // implementation "io.projectreactor:reactor-tools:3.7.0-M5" + // implementation "io.projectreactor:reactor-tools:3.7.0-M6" } ``` diff --git a/gradle.properties b/gradle.properties index 660c7a3a63..9e48826127 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ -version=3.7.0-SNAPSHOT -bomVersion=2024.0.0-M5 -metricsMicrometerVersion=1.2.0-SNAPSHOT +version=3.7.0-M6 +bomVersion=2024.0.0-M6 +metricsMicrometerVersion=1.2.0-M6 org.gradle.parallel=true diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index ca2d2cde61..6072728f50 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -13,9 +13,9 @@ baselinePerfExtra = "3.5.2" # Other shared versions #note that some micrometer artifacts like context-propagation has a different version directly set in libraries below -micrometer = "1.13.3" +micrometer = "1.14.0-M3" micrometerDocsGenerator = "1.0.4" -micrometerTracingTest="1.3.3" +micrometerTracingTest="1.4.0-M3" contextPropagation="1.1.1" kotlin = "1.8.22" reactiveStreams = "1.0.4" diff --git a/settings.gradle b/settings.gradle index e9ed7f71da..3a29fac834 100644 --- a/settings.gradle +++ b/settings.gradle @@ -29,9 +29,9 @@ dependencyResolutionManagement { versionCatalogs { libs { if (System.getProperty("useSnapshotMicrometerVersion")) { - version('micrometer', '1.13.4-SNAPSHOT') + version('micrometer', '1.14.0-SNAPSHOT') version('micrometerDocsGenerator', "1.0.5-SNAPSHOT") - version('micrometerTracingTest', "1.3.4-SNAPSHOT") + version('micrometerTracingTest', "1.4.0-SNAPSHOT") version('contextPropagation', "1.1.2-SNAPSHOT") } }