Skip to content

Commit

Permalink
Added multipart/form-data media type.
Browse files Browse the repository at this point in the history
  • Loading branch information
noboomu committed Mar 30, 2020
1 parent 009626f commit 544668f
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ Proteus Changelog.
## Unreleased
### No issue

**Set version to 4.5 for release**


[009626f1e52b411](https://github.com/noboomu/proteus/commit/009626f1e52b411) Joshua Bauer *2020-03-13 23:13:09*

**Prep for release.**


Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<groupId>io.sinistral</groupId>
<artifactId>proteus-project</artifactId>
<packaging>pom</packaging>
<version>0.4.5</version>
<version>0.4.6-SNAPSHOT</version>
<name>Proteus Project</name>

<description>Proteus is an extremely light, fast, and flexible Java REST API framework built atop Undertow.</description>
Expand Down
2 changes: 1 addition & 1 deletion proteus-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>proteus-project</artifactId>
<groupId>io.sinistral</groupId>
<version>0.4.5</version>
<version>0.4.6-SNAPSHOT</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ public class MediaType
/*******************************************************/

public static final MediaType TEXT_YAML = create("text/yaml", "yaml");
public static final MediaType MULTIPART_FORM_DATA = create("multipart/form-data");

public static final MediaType APPLICATION_ANDREW_INSET = create("application/andrew-inset", "ez");
public static final MediaType APPLICATION_ANNODEX = create("application/annodex", "anx");
Expand Down
2 changes: 1 addition & 1 deletion proteus-openapi/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>proteus-project</artifactId>
<groupId>io.sinistral</groupId>
<version>0.4.5</version>
<version>0.4.6-SNAPSHOT</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion proteus-swagger/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>proteus-project</artifactId>
<groupId>io.sinistral</groupId>
<version>0.4.5</version>
<version>0.4.6-SNAPSHOT</version>

</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down

0 comments on commit 544668f

Please sign in to comment.