Skip to content

Commit 7241fff

Browse files
update dependencies, release latest fixes to the builder
1 parent 2b1ab36 commit 7241fff

23 files changed

Lines changed: 48 additions & 36 deletions

File tree

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Changelog
2+
All notable changes to this project will be documented in this file.
3+
4+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6+
7+
## [1.0.20](https://search.maven.org/artifact/com.envimate.httpmate/core/1.0.20/jar) - 2019-06-11
8+
9+
10+
* New Builder for convenience.
11+
* Update dependencies.
12+

core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<parent>
2929
<groupId>com.envimate</groupId>
3030
<artifactId>httpmate-parent</artifactId>
31-
<version>1.0.19</version>
31+
<version>1.0.20</version>
3232
</parent>
3333

3434
<groupId>com.envimate.httpmate</groupId>

examples/aws-lambda/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
<parent>
5050
<groupId>com.envimate.httpmate.examples</groupId>
5151
<artifactId>parent</artifactId>
52-
<version>1.0.19</version>
52+
<version>1.0.20</version>
5353
</parent>
5454

5555
<artifactId>aws-lambda</artifactId>
@@ -64,13 +64,13 @@
6464
<dependency>
6565
<groupId>com.envimate.httpmate</groupId>
6666
<artifactId>core</artifactId>
67-
<version>1.0.19</version>
67+
<version>1.0.20</version>
6868
</dependency>
6969
<!-- As we want to run our endpoint on aws-lambda we need the httpmate awslambda integration dependency to take care of translating requests from ApiGateway-->
7070
<dependency>
7171
<groupId>com.envimate.httpmate.integrations</groupId>
7272
<artifactId>httpmate-awslambda</artifactId>
73-
<version>1.0.19</version>
73+
<version>1.0.20</version>
7474
</dependency>
7575

7676
<dependency>
@@ -93,7 +93,7 @@
9393
<dependency>
9494
<groupId>com.envimate.httpmate.integrations</groupId>
9595
<artifactId>httpmate-client</artifactId>
96-
<version>1.0.19</version>
96+
<version>1.0.20</version>
9797
<scope>test</scope>
9898
</dependency>
9999
</dependencies>

examples/hello-world/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
<parent>
5050
<groupId>com.envimate.httpmate.examples</groupId>
5151
<artifactId>parent</artifactId>
52-
<version>1.0.19</version>
52+
<version>1.0.20</version>
5353
</parent>
5454

5555
<artifactId>hello-world</artifactId>
@@ -58,7 +58,7 @@
5858
<checkstyle.suppressions.location>
5959
${project.basedir}/src/test/checkstyle/checkstyle-suppressions.xml
6060
</checkstyle.suppressions.location>
61-
<httpmate.version>1.0.19</httpmate.version>
61+
<httpmate.version>1.0.20</httpmate.version>
6262
</properties>
6363

6464
<dependencies>

examples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<parent>
2929
<groupId>com.envimate</groupId>
3030
<artifactId>httpmate-parent</artifactId>
31-
<version>1.0.19</version>
31+
<version>1.0.20</version>
3232
</parent>
3333

3434
<packaging>pom</packaging>

integrations/aws-lambda/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<parent>
2929
<groupId>com.envimate.httpmate</groupId>
3030
<artifactId>integrations-parent</artifactId>
31-
<version>1.0.19</version>
31+
<version>1.0.20</version>
3232
</parent>
3333

3434
<groupId>com.envimate.httpmate.integrations</groupId>

integrations/client/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<parent>
2929
<groupId>com.envimate.httpmate</groupId>
3030
<artifactId>integrations-parent</artifactId>
31-
<version>1.0.19</version>
31+
<version>1.0.20</version>
3232
</parent>
3333

3434
<groupId>com.envimate.httpmate.integrations</groupId>
@@ -54,7 +54,7 @@
5454
<dependency>
5555
<groupId>org.apache.httpcomponents</groupId>
5656
<artifactId>httpmime</artifactId>
57-
<version>4.5.8</version>
57+
<version>4.5.9</version>
5858
</dependency>
5959
</dependencies>
6060
</project>

integrations/events/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<parent>
2929
<groupId>com.envimate.httpmate</groupId>
3030
<artifactId>integrations-parent</artifactId>
31-
<version>1.0.19</version>
31+
<version>1.0.20</version>
3232
</parent>
3333

3434
<groupId>com.envimate.httpmate.integrations</groupId>

integrations/jetty-with-websockets/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
<parent>
4343
<groupId>com.envimate.httpmate</groupId>
4444
<artifactId>integrations-parent</artifactId>
45-
<version>1.0.19</version>
45+
<version>1.0.20</version>
4646
</parent>
4747

4848
<groupId>com.envimate.httpmate.integrations</groupId>
@@ -112,7 +112,7 @@
112112
<dependency>
113113
<groupId>com.envimate.httpmate.integrations</groupId>
114114
<artifactId>httpmate-client</artifactId>
115-
<version>1.0.19</version>
115+
<version>1.0.20</version>
116116
<scope>test</scope>
117117
</dependency>
118118
<dependency>
@@ -130,7 +130,7 @@
130130
<dependency>
131131
<groupId>com.envimate.httpmate.integrations</groupId>
132132
<artifactId>httpmate-multipart</artifactId>
133-
<version>1.0.19</version>
133+
<version>1.0.20</version>
134134
<scope>test</scope>
135135
</dependency>
136136
</dependencies>

integrations/jetty/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<parent>
2929
<groupId>com.envimate.httpmate</groupId>
3030
<artifactId>integrations-parent</artifactId>
31-
<version>1.0.19</version>
31+
<version>1.0.20</version>
3232
</parent>
3333

3434
<groupId>com.envimate.httpmate.integrations</groupId>

0 commit comments

Comments
 (0)