Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/dep_build_v2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
matrix:
java_version: ['8', '17', '21', '24']
# Versions need to align with ones in 'main.yml' workflow
kotlin_version: ['2.0.21', '2.1.21', '2.2.10']
kotlin_version: ['2.1.21', '2.2.10']
env:
JAVA_OPTS: "-XX:+TieredCompilation -XX:TieredStopAtLevel=1"
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dep_build_v3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
matrix:
java_version: ['17', '21', '24']
# Versions need to align with ones in 'main.yml' workflow
kotlin_version: ['2.0.21', '2.1.21', '2.2.10']
kotlin_version: ['2.1.21', '2.2.10']
env:
JAVA_OPTS: "-XX:+TieredCompilation -XX:TieredStopAtLevel=1"
steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:
max-parallel: 5
matrix:
java_version: ['8', '11', '17', '21', '24']
kotlin_version: ['2.0.21', '2.1.21', '2.2.10']
kotlin_version: ['2.1.21', '2.2.10']
include:
- java_version: '8'
kotlin_version: '2.0.21'
kotlin_version: '2.1.21'
release_build: 'R'
env:
JAVA_OPTS: "-XX:+TieredCompilation -XX:TieredStopAtLevel=1"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,10 +111,10 @@ println(arrayNode.toString()) // ["foo",true,1,1.0,"YmFy"]
Different `kotlin-core` versions are supported by different Jackson Kotlin module minor versions.
Here is an incomplete list of supported versions:

* Jackson 2.21.x: Kotlin-core 2.1 - 2.2
* Jackson 2.20.x: Kotlin-core 2.0 - 2.2
* Jackson 2.19.x: Kotlin-core 1.9 - 2.1
* Jackson 2.18.x: Kotlin-core 1.8 - 2.1
* Jackson 2.17.x: Kotlin-core 1.7 - 2.0

Please note that the versions supported by 2.17 are tentative and may change depending on the release date.

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
<javac.src.version>1.8</javac.src.version>
<javac.target.version>1.8</javac.target.version>

<version.kotlin>2.0.21</version.kotlin>
<version.kotlin>2.1.21</version.kotlin>

<!-- Generate PackageVersion.java into this directory. -->
<packageVersion.dir>com/fasterxml/jackson/module/kotlin</packageVersion.dir>
Expand Down
7 changes: 6 additions & 1 deletion release-notes/CREDITS-2.x
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,12 @@ Authors:

Contributors:

# 2.20.0 (not yet released)
# 2.21.0 (not yet released)

WrongWrong (@k163377)
* #1039: Update settings for 2.20

# 2.20.0 (28-Aug-2025)

WrongWrong (@k163377)
* #1025: Deprecate MissingKotlinParameterException and replace with new exception
Expand Down
2 changes: 1 addition & 1 deletion release-notes/VERSION-2.x
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Co-maintainers:

2.21.0 (not yet released)

No changes since 2.20
#1039: Kotlin has been upgraded to 2.1.x.

2.20.0 (28-Aug-2025)

Expand Down