Skip to content

Commit 1e0f56e

Browse files
Update versions
1 parent 2567c47 commit 1e0f56e

6 files changed

Lines changed: 19 additions & 19 deletions

File tree

docs/02-problem4j-core.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ higher is required to use this library.
1313
<dependency>
1414
<groupId>io.github.problem4j</groupId>
1515
<artifactId>problem4j-core</artifactId>
16-
<version>1.4.2</version>
16+
<version>1.4.3</version>
1717
</dependency>
1818
</dependencies>
1919
```
2020
2. Gradle (Groovy or Kotlin DSL):
2121
```kt
2222
dependencies {
23-
implementation("io.github.problem4j:problem4j-core:1.4.2")
23+
implementation("io.github.problem4j:problem4j-core:1.4.3")
2424
}
2525
```
2626

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.4.2</version>
75+
<version>1.4.3</version>
7676
</dependency>
7777
<dependency>
7878
<groupId>io.github.problem4j</groupId>
7979
<artifactId>problem4j-jackson2</artifactId>
80-
<version>1.4.2</version>
80+
<version>1.4.3</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.4.2")
89-
implementation("io.github.problem4j:problem4j-jackson2:1.4.2")
88+
implementation("io.github.problem4j:problem4j-core:1.4.3")
89+
implementation("io.github.problem4j:problem4j-jackson2:1.4.3")
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.4.2</version>
158+
<version>1.4.3</version>
159159
</dependency>
160160
<dependency>
161161
<groupId>io.github.problem4j</groupId>
162162
<artifactId>problem4j-jackson3</artifactId>
163-
<version>1.4.2</version>
163+
<version>1.4.3</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.4.2")
172-
implementation("io.github.problem4j:problem4j-jackson3:1.4.2")
171+
implementation("io.github.problem4j:problem4j-core:1.4.3")
172+
implementation("io.github.problem4j:problem4j-jackson3:1.4.3")
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.6`) |
20-
| `4.x` | `2.x` (latest - `2.2.1`) |
19+
| `3.x` | `1.x` (latest - `1.2.7`) |
20+
| `4.x` | `2.x` (latest - `2.2.2`) |
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.2.1/problem4j-spring-web/src/main/java/io/github/problem4j/spring/web/resolver/MethodValidationProblemResolver.java
150+
[MethodValidationProblemResolver]: https://github.com/problem4j/problem4j-spring/blob/v2.2.2/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

docs/05-tutorials/01-problem4j-and-spring-boot.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ The premier integration of Problem4J with Spring Boot.
1313
<dependency>
1414
<groupId>io.github.problem4j</groupId>
1515
<artifactId>problem4j-spring-webmvc</artifactId>
16-
<version>2.2.1</version>
16+
<version>2.2.2</version>
1717
</dependency>
1818
</dependencies>
1919
```
2020

2121
```kt
2222
dependencies {
23-
implementation("io.github.problem4j:problem4j-spring-webmvc:2.2.1")
23+
implementation("io.github.problem4j:problem4j-spring-webmvc:2.2.2")
2424
}
2525
```
2626

docs/05-tutorials/02-problem4j-and-javalin.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,20 +17,20 @@ long as you can catch exceptions and convert them to `Problem` instances. This p
1717
<dependency>
1818
<groupId>io.github.problem4j</groupId>
1919
<artifactId>problem4j-core</artifactId>
20-
<version>1.4.2</version>
20+
<version>1.4.3</version>
2121
</dependency>
2222
<dependency>
2323
<groupId>io.github.problem4j</groupId>
2424
<artifactId>problem4j-jackson3</artifactId>
25-
<version>1.4.2</version>
25+
<version>1.4.3</version>
2626
</dependency>
2727
</dependencies>
2828
```
2929

3030
```kt
3131
dependencies {
32-
implementation("io.github.problem4j:problem4j-core:1.4.2")
33-
implementation("io.github.problem4j:problem4j-jackson3:1.4.2")
32+
implementation("io.github.problem4j:problem4j-core:1.4.3")
33+
implementation("io.github.problem4j:problem4j-jackson3:1.4.3")
3434
}
3535
```
3636

0 commit comments

Comments
 (0)