Skip to content

Commit 75c9d05

Browse files
Davinpidotoderjust
authored andcommitted
update readme to include spring boot compatibilty
1 parent 3c5d51d commit 75c9d05

File tree

1 file changed

+13
-8
lines changed

1 file changed

+13
-8
lines changed

README.md

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,14 @@ The major and minor number of this library refers to the compatible Spring frame
3131

3232
API changes will follow SEMVER and loosly the Spring Framework releases.
3333

34-
| `spring-data-dynamodb` version | Spring Framework compatibility | Spring Data compatibility |
35-
| ------------------------------- | ------------------------------ | ------------------------- |
36-
| 1.0.x | >= 3.1 && < 4.2 | |
37-
| 4.2.x | >= 4.2 && < 4.3 | Gosling-SR1 |
38-
| 4.3.x | >= 4.3 && < 5.0 | Gosling-SR1 |
39-
| 4.4.x | >= 4.3 && < 5.0 | Hopper-SR2 |
40-
| 4.5.x | >= 4.3 && < 5.0 | Ingalls |
41-
| 5.0.x | >= 5.0 | Kay-SR1 |
34+
| `spring-data-dynamodb` version | Spring Boot compatibility |Spring Framework compatibility | Spring Data compatibility |
35+
| ------------------------------- | ------------------------------ | ------------------------------ | ------------------------- |
36+
| 1.0.x | | >= 3.1 && < 4.2 | |
37+
| 4.2.x | => 1.3.0 && < 1.4.0 | >= 4.2 && < 4.3 | Gosling-SR1 |
38+
| 4.3.x | => 1.4.0 < 2.0 | >= 4.3 && < 5.0 | Gosling-SR1 |
39+
| 4.4.x | => 1.4.0 < 2.0 | >= 4.3 && < 5.0 | Hopper-SR2 |
40+
| 4.5.x | => 1.4.0 < 2.0 | >= 4.3 && < 5.0 | Ingalls |
41+
| 5.0.x | => 2.0 | >= 5.0 | Kay-SR1 |
4242

4343
`spring-data-dynamodb` depends directly on `spring-data` as also `spring-context`, `spring-data` and `spring-tx`.
4444

@@ -148,6 +148,11 @@ public class User {
148148

149149
public User() {
150150
}
151+
152+
public User(String firstName, String lastName) {
153+
this.firstName = firstName;
154+
this.lastName = lastName;
155+
}
151156

152157
@DynamoDBHashKey
153158
@DynamoDBAutoGeneratedKey

0 commit comments

Comments
 (0)