Skip to content

Commit 4df6278

Browse files
authored
Merge pull request #74 from unzerdev/develop
Release 1.1.2.7
2 parents 1f248f2 + 18c1e98 commit 4df6278

File tree

3 files changed

+18
-7
lines changed

3 files changed

+18
-7
lines changed

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres
66
to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

8+
## [1.1.2.7][1.1.2.7]
9+
10+
### Changed
11+
* Upgrade of the used gson Dependencies from 2.8.6 to 2.8.9
12+
* Upgrade of the used faster-xml dependencies from 2.11.3 to 2.12.7
13+
* Upgrade of the used log4j dependencies from 2.17.1 to 2.18.0
14+
815
## [1.1.2.6][1.1.2.6]
916

1017
### Added
@@ -133,6 +140,8 @@ to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
133140
* Remove deprecated classes
134141
* RestCommunication
135142

143+
[1.1.2.7]: http://github.com/unzerdev/java-sdk/compare/1.1.2.6..1.1.2.7
144+
136145
[1.1.2.6]: http://github.com/unzerdev/java-sdk/compare/1.1.2.5..1.1.2.6
137146

138147
[1.1.2.5]: http://github.com/unzerdev/java-sdk/compare/1.1.2.4..1.1.2.5

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Java 1.8 or later.
1212
<dependency>
1313
<groupId>com.unzer.payment</groupId>
1414
<artifactId>java-sdk</artifactId>
15-
<version>1.1.2.6</version>
15+
<version>1.1.2.7</version>
1616
</dependency>
1717
```
1818

pom.xml

+8-6
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.unzer.payment</groupId>
88
<artifactId>java-sdk</artifactId>
9-
<version>1.1.2.6</version>
9+
<version>1.1.2.7</version>
1010
<name>Unzer Java SDK</name>
1111
<description>Unzer Java SDK</description>
1212
<url>https://docs.unzer.com/</url>
@@ -41,6 +41,8 @@
4141
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
4242
<additionalparam>-Xdoclint:none</additionalparam>
4343
<skip.dependency.check>true</skip.dependency.check>
44+
<log4j.version>2.18.0</log4j.version>
45+
<jackson.version>2.12.7</jackson.version>
4446
</properties>
4547

4648
<distributionManagement>
@@ -248,21 +250,21 @@
248250
<dependency>
249251
<groupId>org.apache.logging.log4j</groupId>
250252
<artifactId>log4j-api</artifactId>
251-
<version>2.17.1</version>
253+
<version>${log4j.version}</version>
252254
</dependency>
253255

254256
<dependency>
255257
<groupId>org.apache.logging.log4j</groupId>
256258
<artifactId>log4j-core</artifactId>
257-
<version>2.17.1</version>
259+
<version>${log4j.version}</version>
258260
</dependency>
259261

260262

261263
<!-- JSon Parsing Library from Google -->
262264
<dependency>
263265
<groupId>com.google.code.gson</groupId>
264266
<artifactId>gson</artifactId>
265-
<version>2.8.6</version>
267+
<version>2.8.9</version>
266268
</dependency>
267269

268270

@@ -323,12 +325,12 @@
323325
<dependency>
324326
<groupId>com.fasterxml.jackson.core</groupId>
325327
<artifactId>jackson-core</artifactId>
326-
<version>2.11.3</version>
328+
<version>${jackson.version}</version>
327329
</dependency>
328330
<dependency>
329331
<groupId>com.fasterxml.jackson.core</groupId>
330332
<artifactId>jackson-databind</artifactId>
331-
<version>2.11.3</version>
333+
<version>${jackson.version}</version>
332334
</dependency>
333335
<dependency>
334336
<groupId>javax.xml.bind</groupId>

0 commit comments

Comments
 (0)