Skip to content

Commit 59f11f2

Browse files
committed
Release 0.6.0
1 parent 61492bf commit 59f11f2

File tree

3 files changed

+16
-12
lines changed

3 files changed

+16
-12
lines changed

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -113,18 +113,18 @@ Maven:
113113
<dependency>
114114
<groupId>com.mattbertolini</groupId>
115115
<artifactId>spring-webmvc-annotated-data-binder</artifactId>
116-
<version>0.5.0</version>
116+
<version>0.6.0</version>
117117
</dependency>
118118
```
119119

120120
Gradle:
121121
```groovy
122-
implementation 'com.mattbertolini:spring-webmvc-annotated-data-binder:0.5.0'
122+
implementation 'com.mattbertolini:spring-webmvc-annotated-data-binder:0.6.0'
123123
```
124124

125125
Ivy:
126126
```xml
127-
<dependency org="com.mattbertolini" name="spring-webmvc-annotated-data-binder" rev="0.5.0"/>
127+
<dependency org="com.mattbertolini" name="spring-webmvc-annotated-data-binder" rev="0.6.0"/>
128128
```
129129

130130
### Spring WebFlux
@@ -134,18 +134,18 @@ Maven:
134134
<dependency>
135135
<groupId>com.mattbertolini</groupId>
136136
<artifactId>spring-webflux-annotated-data-binder</artifactId>
137-
<version>0.5.0</version>
137+
<version>0.6.0</version>
138138
</dependency>
139139
```
140140

141141
Gradle:
142142
```groovy
143-
implementation 'com.mattbertolini:spring-webflux-annotated-data-binder:0.5.0'
143+
implementation 'com.mattbertolini:spring-webflux-annotated-data-binder:0.6.0'
144144
```
145145

146146
Ivy:
147147
```xml
148-
<dependency org="com.mattbertolini" name="spring-webflux-annotated-data-binder" rev="0.5.0"/>
148+
<dependency org="com.mattbertolini" name="spring-webflux-annotated-data-binder" rev="0.6.0"/>
149149
```
150150

151151
### Configuration

RELEASE_NOTES.md

+9-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
# Release Notes
22

3-
## 0.6.0-SNAPSHOT
4-
Released TBD
5-
6-
- Restructured Gradle build files to more convention based approached
7-
- Started using type-safe dependency notation in build files
3+
## 0.6.0
4+
Released 2023-12-01
5+
6+
- Restructured Gradle build files to more convention based approach.
7+
- Started using type-safe dependency notation in build files.
8+
- Fix an issue where servlet api version was not being set correctly in published artifacts in Maven Central ([#11](https://github.com/mattbertolini/spring-annotated-web-data-binder/issues/11)).
9+
- Upgrade Spring Framework to 5.3.28.
10+
- Upgrade Spring Boot to 2.7.13
11+
- Update build to Gradle 8.5
812

913
## 0.5.0
1014
Released 2022-05-22

build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ allprojects {
99
apply(plugin = "com.mattbertolini.buildlogic.project-conventions")
1010

1111
group = "com.mattbertolini"
12-
version = "0.6.0-SNAPSHOT"
12+
version = "0.6.0"
1313
}
1414

1515
val rootJacocoDir = "${rootProject.buildDir}/reports/jacoco/testCodeCoverageReport"

0 commit comments

Comments
 (0)