Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: reactor/reactor
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2023.0.16
Choose a base ref
...
head repository: reactor/reactor
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2024.0.0
Choose a head ref
Loading
Showing with 13 additions and 13 deletions.
  1. +3 −3 README.md
  2. +10 −10 gradle.properties
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -21,7 +21,7 @@ In Maven, you need to import the bom first:
<dependency>
<groupId>io.projectreactor</groupId>
<artifactId>reactor-bom</artifactId>
<version>2023.0.12</version>
<version>2024.0.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
@@ -54,7 +54,7 @@ your project without a version number.
```groovy
dependencies {
// import BOM
implementation platform('io.projectreactor:reactor-bom:2023.0.12')
implementation platform('io.projectreactor:reactor-bom:2024.0.0')
// add dependencies without a version number
implementation 'io.projectreactor:reactor-core'
@@ -76,7 +76,7 @@ Then use it to import the BOM:
```groovy
dependencyManagement {
imports {
mavenBom "io.projectreactor:reactor-bom:2023.0.12"
mavenBom "io.projectreactor:reactor-bom:2024.0.0"
}
}
```
20 changes: 10 additions & 10 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
version=2023.0.13-SNAPSHOT
version=2024.0.0

reactorCoreVersion=3.6.13-SNAPSHOT
reactorCoreMicrometerVersion=1.1.13-SNAPSHOT
reactorPoolVersion=1.0.9-SNAPSHOT
reactorPoolMicrometerVersion=0.1.9-SNAPSHOT
reactorNettyVersion=1.1.25-SNAPSHOT
reactorNetty2Version=2.0.0-SNAPSHOT
reactorAddonsVersion=3.5.3-SNAPSHOT
reactorKotlinExtensionsVersion=1.2.4-SNAPSHOT
reactorKafkaVersion=1.3.24-SNAPSHOT
reactorCoreVersion=3.7.0
reactorCoreMicrometerVersion=1.2.0
reactorPoolVersion=1.1.0
reactorPoolMicrometerVersion=0.2.0
reactorNettyVersion=1.2.0
reactorNetty2Version=2.0.0-M3
reactorAddonsVersion=3.5.2
reactorKotlinExtensionsVersion=1.2.3
reactorKafkaVersion=1.3.23

reactiveStreamsVersion=1.0.4