Skip to content

Commit 23cb58a

Browse files
committed
Update versions
1 parent 3f6de05 commit 23cb58a

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

docs/02-problem4j-core.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ higher is required to use this library.
2424
<dependency>
2525
<groupId>io.github.problem4j</groupId>
2626
<artifactId>problem4j-core</artifactId>
27-
<version>1.3.0</version>
27+
<version>1.3.1</version>
2828
</dependency>
2929
</dependencies>
3030
```
3131
2. Gradle (Groovy or Kotlin DSL):
3232
```kt
3333
dependencies {
34-
implementation("io.github.problem4j:problem4j-core:1.3.0")
34+
implementation("io.github.problem4j:problem4j-core:1.3.1")
3535
}
3636
```
3737

docs/03-problem4j-jackson.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -72,21 +72,21 @@ not** declare `jackson-databind` as a transitive dependency.
7272
<dependency>
7373
<groupId>io.github.problem4j</groupId>
7474
<artifactId>problem4j-core</artifactId>
75-
<version>1.3.0</version>
75+
<version>1.3.1</version>
7676
</dependency>
7777
<dependency>
7878
<groupId>io.github.problem4j</groupId>
7979
<artifactId>problem4j-jackson2</artifactId>
80-
<version>1.3.0</version>
80+
<version>1.3.1</version>
8181
</dependency>
8282
</dependencies>
8383
```
8484
2. Gradle (Kotlin DSL):
8585
```kt
8686
dependencies {
8787
implementation("com.fasterxml.jackson.core:jackson-databind:2.20.0")
88-
implementation("io.github.problem4j:problem4j-core:1.3.0")
89-
implementation("io.github.problem4j:problem4j-jackson2:1.3.0")
88+
implementation("io.github.problem4j:problem4j-core:1.3.1")
89+
implementation("io.github.problem4j:problem4j-jackson2:1.3.1")
9090
}
9191
```
9292

@@ -155,21 +155,21 @@ not** declare `jackson-databind` as a transitive dependency.
155155
<dependency>
156156
<groupId>io.github.problem4j</groupId>
157157
<artifactId>problem4j-core</artifactId>
158-
<version>1.3.0</version>
158+
<version>1.3.1</version>
159159
</dependency>
160160
<dependency>
161161
<groupId>io.github.problem4j</groupId>
162162
<artifactId>problem4j-jackson3</artifactId>
163-
<version>1.3.0</version>
163+
<version>1.3.1</version>
164164
</dependency>
165165
</dependencies>
166166
```
167167
2. Gradle (Kotlin DSL):
168168
```kt
169169
dependencies {
170170
implementation("tools.jackson.core:jackson-databind:3.0.3")
171-
implementation("io.github.problem4j:problem4j-core:1.3.0")
172-
implementation("io.github.problem4j:problem4j-jackson3:1.3.0")
171+
implementation("io.github.problem4j:problem4j-core:1.3.1")
172+
implementation("io.github.problem4j:problem4j-jackson3:1.3.1")
173173
}
174174
```
175175

docs/04-problem4j-spring/01-setting-up-and-configuration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ on versions between `3.2.x` and `3.5.x`. Integration with **Spring Boot 4** is r
1616

1717
| Spring Boot Version | Problem4J Spring Version |
1818
|---------------------|--------------------------|
19-
| `3.x` | `1.x` (latest - `1.2.0`) |
20-
| `4.x` | `2.x` (latest - `2.1.0`) |
19+
| `3.x` | `1.x` (latest - `1.2.1`) |
20+
| `4.x` | `2.x` (latest - `2.1.1`) |
2121

2222
Use version from the above table while managing your dependency or visit Maven Central to find out latest version in
2323
given generation.

docs/04-problem4j-spring/04-validation-errors.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,6 @@ Spring automatically assumes it to be a `@ModelAttribute`.
147147
constructors are present, Problem4J will skip evaluation of `@BindParam`. If it is a `record`, then actual arguments
148148
will be taken from **record's canonical constructor**, and additional constructors are ignored.
149149
150-
[MethodValidationProblemResolver]: https://github.com/problem4j/problem4j-spring/blob/v2.1.0/problem4j-spring-web/src/main/java/io/github/problem4j/spring/web/resolver/MethodValidationProblemResolver.java
150+
[MethodValidationProblemResolver]: https://github.com/problem4j/problem4j-spring/blob/v2.1.1/problem4j-spring-web/src/main/java/io/github/problem4j/spring/web/resolver/MethodValidationProblemResolver.java
151151
152152
[method-validation-exceptions]: https://docs.spring.io/spring-framework/reference/core/validation/beanvalidation.html#validation-beanvalidation-spring-method-exceptions

0 commit comments

Comments
 (0)