File tree 3 files changed +8
-8
lines changed
3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -113,18 +113,18 @@ Maven:
113
113
<dependency >
114
114
<groupId >com.mattbertolini</groupId >
115
115
<artifactId >spring-webmvc-annotated-data-binder</artifactId >
116
- <version >0.1 .0</version >
116
+ <version >0.2 .0</version >
117
117
</dependency >
118
118
```
119
119
120
120
Gradle:
121
121
``` groovy
122
- implementation 'com.mattbertolini:spring-webmvc-annotated-data-binder:0.1 .0'
122
+ implementation 'com.mattbertolini:spring-webmvc-annotated-data-binder:0.2 .0'
123
123
```
124
124
125
125
Ivy:
126
126
``` xml
127
- <dependency org =" com.mattbertolini" name =" spring-webmvc-annotated-data-binder" rev =" 0.1 .0" />
127
+ <dependency org =" com.mattbertolini" name =" spring-webmvc-annotated-data-binder" rev =" 0.2 .0" />
128
128
```
129
129
130
130
### Spring WebFlux
@@ -134,18 +134,18 @@ Maven:
134
134
<dependency >
135
135
<groupId >com.mattbertolini</groupId >
136
136
<artifactId >spring-webflux-annotated-data-binder</artifactId >
137
- <version >0.1 .0</version >
137
+ <version >0.2 .0</version >
138
138
</dependency >
139
139
```
140
140
141
141
Gradle:
142
142
``` groovy
143
- implementation 'com.mattbertolini:spring-webflux-annotated-data-binder:0.1 .0'
143
+ implementation 'com.mattbertolini:spring-webflux-annotated-data-binder:0.2 .0'
144
144
```
145
145
146
146
Ivy:
147
147
``` xml
148
- <dependency org =" com.mattbertolini" name =" spring-webflux-annotated-data-binder" rev =" 0.1 .0" />
148
+ <dependency org =" com.mattbertolini" name =" spring-webflux-annotated-data-binder" rev =" 0.2 .0" />
149
149
```
150
150
151
151
### Configuration
Original file line number Diff line number Diff line change 1
1
# Release Notes
2
2
3
3
## 0.2.0
4
- In progress
4
+ Released 2020-09-02
5
5
6
6
- Add support for binding request payloads using the ` @RequestBody ` annotation.
7
7
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ subprojects {
23
23
apply plugin : ' org.sonarqube'
24
24
25
25
group ' com.mattbertolini'
26
- version ' 0.2.0-SNAPSHOT '
26
+ version ' 0.2.0'
27
27
28
28
sourceCompatibility = 1.8
29
29
You can’t perform that action at this time.
0 commit comments