Skip to content

Commit

Permalink
#2055 - Upgrade compatibility profiles to latest Kotlin releases.
Browse files Browse the repository at this point in the history
  • Loading branch information
odrotbohm committed Nov 16, 2023
1 parent 8cec27d commit 6f01d75
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/compatibility.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
spring: ['', 'spring-next', 'spring-61-next']
kotlin: ['', 'kotlin-next']
kotlin: ['', 'kotlin-next', 'kotlin-2-next']
jackson: ['', 'jackson-next']

name: Compatibility ${{ matrix.spring }} ${{ matrix.kotlin }} ${{ matrix.jackson }}
Expand Down
12 changes: 10 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,16 @@
<profile>
<id>kotlin-next</id>
<properties>
<kotlin.version>1.8.21</kotlin.version>
<kotlinx-coroutines.version>1.7.0-RC</kotlinx-coroutines.version>
<kotlin.version>1.9.20</kotlin.version>
<kotlinx-coroutines.version>1.7.3</kotlinx-coroutines.version>
</properties>
</profile>

<profile>
<id>kotlin-2-next</id>
<properties>
<kotlin.version>2.0.0-Beta1</kotlin.version>
<kotlinx-coroutines.version>1.7.3</kotlinx-coroutines.version>
</properties>
</profile>

Expand Down

0 comments on commit 6f01d75

Please sign in to comment.