Skip to content

Commit 97c5582

Browse files
committed
Release 0.3.0
1 parent 28e7909 commit 97c5582

File tree

3 files changed

+13
-7
lines changed

3 files changed

+13
-7
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.2.0</version>
116+
<version>0.3.0</version>
117117
</dependency>
118118
```
119119

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

125125
Ivy:
126126
```xml
127-
<dependency org="com.mattbertolini" name="spring-webmvc-annotated-data-binder" rev="0.2.0"/>
127+
<dependency org="com.mattbertolini" name="spring-webmvc-annotated-data-binder" rev="0.3.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.2.0</version>
137+
<version>0.3.0</version>
138138
</dependency>
139139
```
140140

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

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

151151
### Configuration

RELEASE_NOTES.md

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

3+
## 0.3.0
4+
Released 2021-03-24
5+
6+
- Add support for binding `MultipartFile` and Servlet API `Part` objects using `@FormParamter` and `@RequestParamter`
7+
annotations. `MultipartFile` and `Part` are only for Spring MVC and do not work in Spring WebFlux.
8+
39
## 0.2.0
410
Released 2020-09-02
511

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ subprojects {
2525
apply plugin: 'org.sonarqube'
2626

2727
group 'com.mattbertolini'
28-
version '0.3.0-SNAPSHOT'
28+
version '0.3.0'
2929

3030
sourceCompatibility = 1.8
3131

0 commit comments

Comments
 (0)