Skip to content

Commit 9358cb3

Browse files
Release 1.4.0
1 parent 004d598 commit 9358cb3

3 files changed

Lines changed: 11 additions & 9 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ The format is based on [Keep a Changelog][keepachangelog], and this project adhe
66

77
## [Unreleased]
88

9+
## [1.4.0] - 2026-02-17
10+
911
### Added
1012

1113
- Add support for JSpecify annotations for nullability and Kotlin interop.

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -158,21 +158,21 @@ The `problem4j-jackson` modules does **not** declare `jackson-databind` as a tra
158158
<dependency>
159159
<groupId>io.github.problem4j</groupId>
160160
<artifactId>problem4j-core</artifactId>
161-
<version>1.3.3</version>
161+
<version>1.4.0</version>
162162
</dependency>
163163
<dependency>
164164
<groupId>io.github.problem4j</groupId>
165165
<artifactId>problem4j-jackson2</artifactId>
166-
<version>1.3.3</version>
166+
<version>1.4.0</version>
167167
</dependency>
168168
</dependencies>
169169
```
170170
2. Gradle (Groovy or Kotlin DSL):
171171
```groovy
172172
dependencies {
173173
implementation("com.fasterxml.jackson.core:jackson-databind:2.20.0")
174-
implementation("io.github.problem4j:problem4j-core:1.3.3")
175-
implementation("io.github.problem4j:problem4j-jackson2:1.3.3")
174+
implementation("io.github.problem4j:problem4j-core:1.4.0")
175+
implementation("io.github.problem4j:problem4j-jackson2:1.4.0")
176176
}
177177
```
178178

@@ -189,21 +189,21 @@ The `problem4j-jackson` modules does **not** declare `jackson-databind` as a tra
189189
<dependency>
190190
<groupId>io.github.problem4j</groupId>
191191
<artifactId>problem4j-core</artifactId>
192-
<version>1.3.3</version>
192+
<version>1.4.0</version>
193193
</dependency>
194194
<dependency>
195195
<groupId>io.github.problem4j</groupId>
196196
<artifactId>problem4j-jackson3</artifactId>
197-
<version>1.3.3</version>
197+
<version>1.4.0</version>
198198
</dependency>
199199
</dependencies>
200200
```
201201
2. Gradle (Groovy or Kotlin DSL):
202202
```groovy
203203
dependencies {
204204
implementation("tools.jackson.core:jackson-databind:3.0.3")
205-
implementation("io.github.problem4j:problem4j-core:1.3.3")
206-
implementation("io.github.problem4j:problem4j-jackson3:1.3.3")
205+
implementation("io.github.problem4j:problem4j-core:1.4.0")
206+
implementation("io.github.problem4j:problem4j-jackson3:1.4.0")
207207
}
208208
```
209209

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ org.gradle.workers.max=4
55
#
66
# Project settings
77
group=io.github.problem4j
8-
version=0.0.0-SNAPSHOT
8+
version=1.4.0
99
#
1010
# Internal buildscript settings
1111
internal.pom.url=https://github.com/problem4j/problem4j-jackson

0 commit comments

Comments
 (0)