Skip to content

Commit b026324

Browse files
authored
Merge pull request #1033 from FasterXML/2.20
2.20
2 parents 2c1d1f5 + ed6d7d5 commit b026324

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

README.md

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,24 +12,23 @@ With this module, single constructor classes can be used automatically,
1212
and those with secondary constructors or static factories are also supported.
1313

1414
# Status
15-
16-
* release `2.19.0` (for Jackson `2.19.x`) [![GitHub Actions build](https://github.com/FasterXML/jackson-module-kotlin/actions/workflows/main.yml/badge.svg?branch=2.19)](https://github.com/FasterXML/jackson-module-kotlin/actions?query=branch%3A2.19)
17-
* release `2.18.3` (for Jackson `2.18.x`) [![GitHub Actions build](https://github.com/FasterXML/jackson-module-kotlin/actions/workflows/main.yml/badge.svg?branch=2.18)](https://github.com/FasterXML/jackson-module-kotlin/actions?query=branch%3A2.18)
18-
* release `2.17.3` (for Jackson `2.17.x`) [![GitHub Actions build](https://github.com/FasterXML/jackson-module-kotlin/actions/workflows/main.yml/badge.svg?branch=2.17)](https://github.com/FasterXML/jackson-module-kotlin/actions?query=branch%3A2.17)
15+
* release `2.20.0` (for Jackson `2.20.x`) [![GitHub Actions build](https://github.com/FasterXML/jackson-module-kotlin/actions/workflows/main.yml/badge.svg?branch=2.20)](https://github.com/FasterXML/jackson-module-kotlin/actions?query=branch%3A2.20)
16+
* release `2.19.2` (for Jackson `2.19.x`) [![GitHub Actions build](https://github.com/FasterXML/jackson-module-kotlin/actions/workflows/main.yml/badge.svg?branch=2.19)](https://github.com/FasterXML/jackson-module-kotlin/actions?query=branch%3A2.19)
17+
* release `2.18.4` (for Jackson `2.18.x`) [![GitHub Actions build](https://github.com/FasterXML/jackson-module-kotlin/actions/workflows/main.yml/badge.svg?branch=2.18)](https://github.com/FasterXML/jackson-module-kotlin/actions?query=branch%3A2.18)
1918

2019
Releases require that you have included Kotlin stdlib and reflect libraries already.
2120

2221
Gradle:
2322
```
24-
implementation "com.fasterxml.jackson.module:jackson-module-kotlin:2.19.+"
23+
implementation "com.fasterxml.jackson.module:jackson-module-kotlin:2.20.+"
2524
```
2625

2726
Maven:
2827
```xml
2928
<dependency>
3029
<groupId>com.fasterxml.jackson.module</groupId>
3130
<artifactId>jackson-module-kotlin</artifactId>
32-
<version>2.19.0</version>
31+
<version>2.20.0</version>
3332
</dependency>
3433
```
3534

@@ -191,7 +190,7 @@ when(root){
191190
# Configuration
192191

193192
The Kotlin module may be given a few configuration parameters at construction time;
194-
see the [inline documentation](https://github.com/FasterXML/jackson-module-kotlin/blob/2.19/src/main/kotlin/com/fasterxml/jackson/module/kotlin/KotlinModule.kt)
193+
see the [inline documentation](https://github.com/FasterXML/jackson-module-kotlin/blob/2.20/src/main/kotlin/com/fasterxml/jackson/module/kotlin/KotlinModule.kt)
195194
for details on what options are available and what they do.
196195

197196
```kotlin
@@ -254,7 +253,7 @@ See the [main Jackson contribution guidelines](https://github.com/FasterXML/jack
254253

255254
If you are going to write code, choose the appropriate base branch:
256255

257-
- `2.19` for bugfixes against the current stable version
256+
- `2.20` for bugfixes against the current stable version
258257
- `2.x` for additive functionality & features or [minor](https://semver.org), backwards compatible changes to existing behavior to be included in the next minor version release
259258
- `3.x` for significant changes to existing behavior, which will be part of Jackson 3.0
260259

0 commit comments

Comments
 (0)